diff options
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/RapidshareCom.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/module/plugins/hoster/RapidshareCom.py b/module/plugins/hoster/RapidshareCom.py index 2bc395a86..c02a69b81 100644 --- a/module/plugins/hoster/RapidshareCom.py +++ b/module/plugins/hoster/RapidshareCom.py @@ -203,6 +203,8 @@ class RapidshareCom(Hoster): self.wait() elif "This file is too big to download it for free" in result: self.fail(_("You need a premium account for this file")) + elif "Filename invalid." in result: + self.fail(_("Filename reported invalid")) elif between_wait: self.setWait(int(between_wait.group(1))) self.wantReconnect = True |