From: Vijay Singh Date: Sun, 12 Mar 2017 20:22:35 +0000 (+0530) Subject: [openload] Fix extraction X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=ff9d509d200577a0be962ee47894cd257c7ef818;p=youtube-dl.git [openload] Fix extraction Just a minor fix for openload --- diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py index 5a5607357..9a42ab895 100644 --- a/youtube_dl/extractor/openload.py +++ b/youtube_dl/extractor/openload.py @@ -100,7 +100,7 @@ class OpenloadIE(InfoExtractor): i = int(B, 16) index = (h / 2) % 10 A = hashMap[index] - i = i ^ 137 + i = i ^ 96 i = i ^ A video_url_chars.append(compat_chr(i)) h += 2