diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-04 21:52:18 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-04 21:52:18 +0200 |
commit | ed6bdae602c76b4d5fcac73001e9ebe7ea4d547f (patch) | |
tree | cb3499afa01eb34a577ecd37985e881e3501e37f /module/plugins | |
parent | Merge pull request #1697 from jellysheep/patch-2 (diff) | |
parent | [Account] fix relogin not working (diff) | |
download | pyload-ed6bdae602c76b4d5fcac73001e9ebe7ea4d547f.tar.xz |
Merge pull request #1705 from GammaC0de/patch-2
[Account] fix relogin not working
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/internal/Account.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/module/plugins/internal/Account.py b/module/plugins/internal/Account.py index ec89caa00..2713e8da4 100644 --- a/module/plugins/internal/Account.py +++ b/module/plugins/internal/Account.py @@ -13,7 +13,7 @@ from module.utils import compare_time, lock, parseFileSize as parse_size class Account(Plugin): __name__ = "Account" __type__ = "account" - __version__ = "0.16" + __version__ = "0.17" __status__ = "testing" __description__ = """Base account plugin""" @@ -83,9 +83,6 @@ class Account(Plugin): req.clearCookies() self.clean() - if user in self.info: - self.info[user]['login'].clear() - return self._login(user) |