diff options
author | Nils Hesse <nphesse@gmail.com> | 2012-11-14 19:23:26 +0100 |
---|---|---|
committer | Nils Hesse <nphesse@gmail.com> | 2012-11-14 19:23:26 +0100 |
commit | a0ce4ee20996e7cb13d2379bd2c27459bea6bf7f (patch) | |
tree | e7e13cab0e6e46a84f4d5172658353801e715278 /module/plugins/hoster/ReloadCc.py | |
parent | Use a dictionary to supply HTTP requests with the GET parameters (ensure prop... (diff) | |
download | pyload-a0ce4ee20996e7cb13d2379bd2c27459bea6bf7f.tar.xz |
Update the error codes
Diffstat (limited to 'module/plugins/hoster/ReloadCc.py')
-rw-r--r-- | module/plugins/hoster/ReloadCc.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/ReloadCc.py b/module/plugins/hoster/ReloadCc.py index 1fb1d4419..7c171befe 100644 --- a/module/plugins/hoster/ReloadCc.py +++ b/module/plugins/hoster/ReloadCc.py @@ -62,8 +62,10 @@ class ReloadCc(Hoster): self.fail("User is disabled") elif status == 404: self.offline() - elif status == 509: + elif status == 409: self.fail("Fairuse traffic exceeded") + elif status == 428: + self.fail("Hoster currently not possible") elif status >= 500: self.tempOffline() else: |