diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-24 11:20:07 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-09-24 11:20:07 +0200 |
commit | b728d6aeb02b0e43b5abdcfc9be3d788f849a1d0 (patch) | |
tree | 7932bca78055f37e4451d4eb5e0c81210c3fff51 /module/plugins/hoster/FreakshareNet.py | |
parent | new .pot files (diff) | |
download | pyload-b728d6aeb02b0e43b5abdcfc9be3d788f849a1d0.tar.xz |
freakshare waiting fix
Diffstat (limited to 'module/plugins/hoster/FreakshareNet.py')
-rw-r--r-- | module/plugins/hoster/FreakshareNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FreakshareNet.py b/module/plugins/hoster/FreakshareNet.py index 82d0acb21..18048704a 100644 --- a/module/plugins/hoster/FreakshareNet.py +++ b/module/plugins/hoster/FreakshareNet.py @@ -9,7 +9,7 @@ class FreakshareNet(Hoster): __name__ = "FreakshareNet" __type__ = "hoster" __pattern__ = r"http://(?:www\.)?freakshare\.net/files/\S*?/" - __version__ = "0.31" + __version__ = "0.32" __description__ = """Freakshare.com Download Hoster""" __author_name__ = ("sitacuisses","spoob","mkaay") __author_mail__ = ("sitacuisses@yahoo.de","spoob@pyload.org","mkaay@mkaay.de") @@ -75,7 +75,7 @@ class FreakshareNet(Hoster): if self.html is None: self.download_html() - if "Der Traffic f\xc3\xbcr heute ist verbraucht!" in self.html: + if "Der Traffic f\xc3\xbcr heute ist verbraucht!" in self.html or "Your Traffic is used up for today" in self.html: self.wantReconnect = True return 24*3600 |