[openload] Fix extraction
Just a minor fix for openload
This commit is contained in:
parent
c1795ca6c8
commit
ff9d509d20
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class OpenloadIE(InfoExtractor):
|
||||||
i = int(B, 16)
|
i = int(B, 16)
|
||||||
index = (h / 2) % 10
|
index = (h / 2) % 10
|
||||||
A = hashMap[index]
|
A = hashMap[index]
|
||||||
i = i ^ 137
|
i = i ^ 96
|
||||||
i = i ^ A
|
i = i ^ A
|
||||||
video_url_chars.append(compat_chr(i))
|
video_url_chars.append(compat_chr(i))
|
||||||
h += 2
|
h += 2
|
||||||
|
|
Loading…
Reference in a new issue