From 88f34841c319c1c67469a361350b0482d4952e11 Mon Sep 17 00:00:00 2001 From: zoidberg10 Date: Tue, 14 Aug 2012 21:48:19 +0200 Subject: closed #653, #654, fix cbh --- module/plugins/hoster/RapidgatorNet.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'module/plugins/hoster/RapidgatorNet.py') diff --git a/module/plugins/hoster/RapidgatorNet.py b/module/plugins/hoster/RapidgatorNet.py index 3b0981b8b..678a3d707 100644 --- a/module/plugins/hoster/RapidgatorNet.py +++ b/module/plugins/hoster/RapidgatorNet.py @@ -67,7 +67,7 @@ class RapidgatorNet(SimpleHoster): __name__ = "RapidgatorNet" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?(rapidgator.net)/file/(\d+)" - __version__ = "0.05" + __version__ = "0.06" __description__ = """rapidgator.net""" __author_name__ = ("zoidberg","chrox") @@ -81,8 +81,9 @@ class RapidgatorNet(SimpleHoster): SOLVEMEDIA_PATTERN = r'http:\/\/api\.solvemedia\.com\/papi\/challenge\.script\?k=(.*?)"' def handleFree(self): - if "You can download files up to 500 MB in free mode" in self.html: - self.fail("File too large for free download") + if "You can download files up to 500 MB in free mode" in self.html \ + or "This file can be downloaded by premium only" in self.html: + self.fail("Premium account needed for download") self.checkWait() -- cgit v1.2.3