Skip to content

Commit

Permalink
In convert_cookiejar add quote_cookie=False just in case it gets fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
user committed Mar 7, 2024
1 parent 0d6415f commit c08052d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avtdl/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def convert_cookiejar(cookie_jar: cookiejar.CookieJar) -> aiohttp.CookieJar:
cookies[name]['secure'] = cookie.secure
cookies[name]['version'] = str(cookie.version)
cookies[name]['comment'] = cookie.comment
new_jar = aiohttp.CookieJar()
new_jar = aiohttp.CookieJar(quote_cookie=False)
new_jar.update_cookies(cookies)
return new_jar

Expand Down

0 comments on commit c08052d

Please sign in to comment.