diff options
author | 2015-10-04 04:29:58 +0200 | |
---|---|---|
committer | 2015-10-04 04:29:58 +0200 | |
commit | 1c7d9e55ffbfc9204c9e9246d9cc64806fa38326 (patch) | |
tree | 49fff3f3b5b2c036c99c1422b9d0153a6c80f0cd /module/plugins/hoster/FileserveCom.py | |
parent | Fix https://github.com/pyload/pyload/issues/1911#issuecomment-145026557 (diff) | |
download | pyload-1c7d9e55ffbfc9204c9e9246d9cc64806fa38326.tar.xz |
Fixpack (2)
Diffstat (limited to 'module/plugins/hoster/FileserveCom.py')
-rw-r--r-- | module/plugins/hoster/FileserveCom.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hoster/FileserveCom.py b/module/plugins/hoster/FileserveCom.py index fb1b7c631..9ccc5df86 100644 --- a/module/plugins/hoster/FileserveCom.py +++ b/module/plugins/hoster/FileserveCom.py @@ -190,16 +190,16 @@ class FileserveCom(Hoster): res = json_loads(res) if res['error_code'] == "302": premium_url = res['next'] - + elif res['error_code'] in ["305", "500"]: self.temp_offline() - + elif res['error_code'] in ["403", "605"]: self.restart(premium=False) - + elif res['error_code'] in ["606", "607", "608"]: self.offline() - + else: self.log_error(res['error_code'], res['error_message']) |