Skip to content

Commit ef443b8

Browse files
committed
Merge branch 'master' of github.com:pedronauck/react-video
* 'master' of github.com:pedronauck/react-video: Always retrieve Vimeo data over HTTPS
2 parents 4590f05 + 319f858 commit ef443b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/react-video.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ module.exports = React.createClass({
9595
},
9696
fetchVimeoData() {
9797
var id = this.props.id;
98-
var url = `http://vimeo.com/api/v2/video/${id}.json`;
98+
var url = `https://vimeo.com/api/v2/video/${id}.json`;
9999

100100
ajax.get(url, (err, res) => {
101101
this.setState({

0 commit comments

Comments
 (0)