diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-09-11 18:36:59 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-09-11 18:36:59 +0800 |
commit | f01115c933bdf6a3d741bb2f306d26b4df943a40 (patch) | |
tree | 4a75bd11bb2d118ae4a01f7c12969c5c9a43fcd0 /youtube_dl/extractor/openload.py | |
parent | 2cdbc06a1f9dfda4079b2529aa51089650715466 (diff) |
[openload] Temporary fix (#10408)
Diffstat (limited to 'youtube_dl/extractor/openload.py')
-rw-r--r-- | youtube_dl/extractor/openload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/openload.py b/youtube_dl/extractor/openload.py index 03baf8e32..76316ca2f 100644 --- a/youtube_dl/extractor/openload.py +++ b/youtube_dl/extractor/openload.py @@ -60,7 +60,7 @@ class OpenloadIE(InfoExtractor): if j >= 33 and j <= 126: j = ((j + 14) % 94) + 33 if idx == len(enc_data) - 1: - j += 1 + j += 3 video_url_chars += compat_chr(j) video_url = 'https://openload.co/stream/%s?mime=true' % ''.join(video_url_chars) |