diff options
Diffstat (limited to 'lib/Videolist/Platform/Vimeo.php')
-rw-r--r-- | lib/Videolist/Platform/Vimeo.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Videolist/Platform/Vimeo.php b/lib/Videolist/Platform/Vimeo.php index a4a1f275c..6930cdb2d 100644 --- a/lib/Videolist/Platform/Vimeo.php +++ b/lib/Videolist/Platform/Vimeo.php @@ -25,7 +25,7 @@ class Videolist_Platform_Vimeo implements Videolist_PlatformInterface { $video_id = $parsed['video_id']; - $buffer = file_get_contents("http://vimeo.com/api/v2/video/$video_id.xml"); + $buffer = file_get_contents("https://vimeo.com/api/v2/video/$video_id.xml"); $xml = new SimpleXMLElement($buffer); $videos = $xml->children(); |