Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pedronauck/react-video
Browse files Browse the repository at this point in the history
* 'master' of github.com:pedronauck/react-video:
  Always retrieve Vimeo data over HTTPS
  • Loading branch information
pedronauck committed Oct 31, 2014
2 parents 4590f05 + 319f858 commit ef443b8
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 @@ -95,7 +95,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 ef443b8

Please sign in to comment.