mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
Update signature function
This commit is contained in:
parent
8d97ecaeb1
commit
3a1a2403f5
1 changed files with 5 additions and 2 deletions
|
@ -244,11 +244,14 @@ def decrypt_signature(a)
|
|||
a = a.split("")
|
||||
|
||||
a.reverse!
|
||||
a.delete_at(0..1)
|
||||
a = splice(a, 67)
|
||||
a.delete_at(0..2)
|
||||
a.reverse!
|
||||
a.delete_at(0..2)
|
||||
a = splice(a, 38)
|
||||
a.delete_at(0..0)
|
||||
a = splice(a, 64)
|
||||
a.reverse!
|
||||
a.delete_at(0..1)
|
||||
|
||||
return a.join("")
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue