From: Michael Orlitzky Date: Fri, 18 Nov 2011 23:35:28 +0000 (-0500) Subject: Remove 'www' from the Vimeo details URL. X-Git-Url: https://gitweb.michael.orlitzky.com/?p=dead%2Fwhatever-dl.git;a=commitdiff_plain;h=d3a5ba4d6152e18bace4694806cff5601afdcb5b Remove 'www' from the Vimeo details URL. --- diff --git a/src/websites/vimeo.rb b/src/websites/vimeo.rb index c259b7c..f8e6ad3 100644 --- a/src/websites/vimeo.rb +++ b/src/websites/vimeo.rb @@ -35,7 +35,7 @@ class Vimeo < Website # the junk we need to construct the video URL. Note that the file # URL given in the XML is *not* valid. video_id = self.parse_video_id() - details_url = "http://www.vimeo.com/moogaloop/load/clip:#{video_id}/local" + details_url = "http://vimeo.com/moogaloop/load/clip:#{video_id}/local" details_data = get_page_data(details_url) request_signature = parse_request_signature(details_data)