diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-11-15 21:26:27 +0100 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-11-15 21:26:27 +0100 |
commit | d7a8db23ba3d0916dd0dfd6789b1554276cadf35 (patch) | |
tree | c4df3524ee7bd17adc21fcc4d77d486085d1c3c9 /module/plugins | |
parent | update hellshare (now premium only), SimpleHoster.py - utf8-encode url (diff) | |
parent | Merged in irrenhaus/pyload (pull request #41) (diff) | |
download | pyload-d7a8db23ba3d0916dd0dfd6789b1554276cadf35.tar.xz |
Merge
Diffstat (limited to 'module/plugins')
-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: |