Skip to content

Commit

Permalink
Merge pull request #7 from KyleAMathews/https-issue
Browse files Browse the repository at this point in the history
Always retrieve Vimeo data over HTTPS
  • Loading branch information
pedronauck committed Oct 31, 2014
2 parents 46c8138 + 289cfd1 commit 319f858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/react-video.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ module.exports = React.createClass({
},
fetchVimeoData() {
var id = this.props.id;
var url = `http://vimeo.com/api/v2/video/${id}.json`;
var url = `https://vimeo.com/api/v2/video/${id}.json`;

ajax.get(url, (err, res) => {
this.setState({
Expand Down

0 comments on commit 319f858

Please sign in to comment.