diff options
| author | 2015-09-21 23:35:58 +0200 | |
|---|---|---|
| committer | 2015-09-21 23:35:58 +0200 | |
| commit | 34244c7a49b099d30456e0bd80cf26a2be3a3208 (patch) | |
| tree | 306e77f19f37eb8f1af775c321c9df8de6b394c0 /module/plugins/internal/XFSAccount.py | |
| parent | [FastixRu] Fixup (diff) | |
| download | pyload-34244c7a49b099d30456e0bd80cf26a2be3a3208.tar.xz | |
Spare improvements and fixes (2)
Diffstat (limited to 'module/plugins/internal/XFSAccount.py')
| -rw-r--r-- | module/plugins/internal/XFSAccount.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/XFSAccount.py b/module/plugins/internal/XFSAccount.py index 392d9503c..bb5cbcf50 100644 --- a/module/plugins/internal/XFSAccount.py +++ b/module/plugins/internal/XFSAccount.py @@ -12,7 +12,7 @@ from module.plugins.internal.Plugin import parse_html_form, set_cookie class XFSAccount(Account): __name__ = "XFSAccount" __type__ = "account" - __version__ = "0.45" + __version__ = "0.46" __status__ = "testing" __description__ = """XFileSharing account plugin""" @@ -145,7 +145,7 @@ class XFSAccount(Account): self.HOSTER_URL = "http://www.%s/" % self.HOSTER_DOMAIN if self.COOKIES: - if isinstance(self.COOKIES, list) and not self.COOKIES.count((self.HOSTER_DOMAIN, "lang", "english")): + if isinstance(self.COOKIES, list) and (self.HOSTER_DOMAIN, "lang", "english") not in self.COOKIES: self.COOKIES.insert((self.HOSTER_DOMAIN, "lang", "english")) else: set_cookie(self.req.cj, self.HOSTER_DOMAIN, "lang", "english") |
