mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-01-30 20:34:40 +01:00
Don't forget trailing '%'
This commit is contained in:
parent
9fefc88656
commit
593b77064c
1 changed files with 3 additions and 0 deletions
|
@ -98,6 +98,9 @@ except ImportError:
|
||||||
append = res.append
|
append = res.append
|
||||||
|
|
||||||
for item in bits[1:]:
|
for item in bits[1:]:
|
||||||
|
if item == '':
|
||||||
|
append(b'%')
|
||||||
|
continue
|
||||||
try:
|
try:
|
||||||
append(item[:2].decode('hex'))
|
append(item[:2].decode('hex'))
|
||||||
append(item[2:])
|
append(item[2:])
|
||||||
|
|
Loading…
Add table
Reference in a new issue