mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 09:37:25 +00:00
Fix for Subscene under Python 3.x
This commit is contained in:
parent
b3b84abed1
commit
8ea82d5e5f
1 changed files with 2 additions and 2 deletions
|
@ -194,7 +194,7 @@ class SubsceneProvider(Provider, ProviderSubtitleArchiveMixin):
|
||||||
del cj[cn]
|
del cj[cn]
|
||||||
|
|
||||||
logger.debug("Storing cookies: %r", cj)
|
logger.debug("Storing cookies: %r", cj)
|
||||||
region.set("subscene_cookies2", bytearray(cj,encoding='utf-8'))
|
region.set("subscene_cookies2", cj)
|
||||||
return
|
return
|
||||||
raise ProviderError("Something went wrong when trying to log in #1")
|
raise ProviderError("Something went wrong when trying to log in #1")
|
||||||
|
|
||||||
|
@ -221,7 +221,7 @@ class SubsceneProvider(Provider, ProviderSubtitleArchiveMixin):
|
||||||
|
|
||||||
last_filters = region.get("subscene_filters")
|
last_filters = region.get("subscene_filters")
|
||||||
if last_filters != acc_filters:
|
if last_filters != acc_filters:
|
||||||
region.set("subscene_filters", bytearray(acc_filters, encoding='utf-8'))
|
region.set("subscene_filters", acc_filters)
|
||||||
logger.debug("Setting account filters to %r", acc_filters)
|
logger.debug("Setting account filters to %r", acc_filters)
|
||||||
self.session.post("https://u.subscene.com/filter", acc_filters, allow_redirects=False)
|
self.session.post("https://u.subscene.com/filter", acc_filters, allow_redirects=False)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue