Skip to content

Commit

Permalink
[openload] Update algorithm again (#10408)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yen Chi Hsuan committed Aug 28, 2016
1 parent 04b32c8 commit 98908bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/openload.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def _real_extract(self, url):
if j >= 33 and j <= 126:
j = ((j + 14) % 94) + 33
if idx == len(enc_data) - 1:
j += 2
j += 1
video_url_chars += compat_chr(j)

video_url = 'https://openload.co/stream/%s?mime=true' % ''.join(video_url_chars)
Expand Down

0 comments on commit 98908bc

Please sign in to comment.