diff options
author | Jeix <devnull@localhost> | 2011-01-16 13:14:15 +0100 |
---|---|---|
committer | Jeix <devnull@localhost> | 2011-01-16 13:14:15 +0100 |
commit | 1af7ad8e48ae3734848b772132bae0f072bf4394 (patch) | |
tree | ae2c78b03f35aa98c1f6c9ec10ff59a67b8575bd /module/plugins/hoster/HotfileCom.py | |
parent | mssing bracets (diff) | |
download | pyload-1af7ad8e48ae3734848b772132bae0f072bf4394.tar.xz |
netfolder, hotfile fix, filesonic/sharingmatrix beta
Diffstat (limited to 'module/plugins/hoster/HotfileCom.py')
-rw-r--r-- | module/plugins/hoster/HotfileCom.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/module/plugins/hoster/HotfileCom.py b/module/plugins/hoster/HotfileCom.py index ca44997c2..1b8fc0e7b 100644 --- a/module/plugins/hoster/HotfileCom.py +++ b/module/plugins/hoster/HotfileCom.py @@ -123,6 +123,8 @@ class HotfileCom(Hoster): if int(match) == 0: continue else: - self.wantReconnect = True - return int(match)/1000 + 65 + waittime = int(match)/1000 + 65 + if waittime > 300: + self.wantReconnect = True + return waittime return 65 |