diff options
author | healthhazard <healthhazard@freenet.de> | 2013-04-14 12:25:24 +0200 |
---|---|---|
committer | healthhazard <healthhazard@freenet.de> | 2013-04-14 12:25:24 +0200 |
commit | 4403f97651be9a3e178377ce38fed14b9b7d7c32 (patch) | |
tree | b1d79f8f0732681d021a7a2f661937c742f84b9f | |
parent | MBLinkInfo: updated pattern (diff) | |
download | pyload-4403f97651be9a3e178377ce38fed14b9b7d7c32.tar.xz |
Update UploadedTo.py
Corrected waiting time to 180 (not 60) minutes as free user.
-rw-r--r-- | module/plugins/hoster/UploadedTo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/UploadedTo.py b/module/plugins/hoster/UploadedTo.py index c7ce5846e..8c7cb5b0a 100644 --- a/module/plugins/hoster/UploadedTo.py +++ b/module/plugins/hoster/UploadedTo.py @@ -209,7 +209,7 @@ class UploadedTo(Hoster): elif "limit-parallel" in result: self.fail("Cannot download in parallel") elif self.DL_LIMIT_PATTERN in result: # limit-dl - self.setWait(60 * 60, True) + self.setWait(3 * 60 * 60, True) self.wait() self.retry() elif 'err:"captcha"' in result: @@ -228,6 +228,6 @@ class UploadedTo(Hoster): self.download(downloadURL, disposition=True) check = self.checkDownload({"limit-dl": self.DL_LIMIT_PATTERN}) if check == "limit-dl": - self.setWait(60 * 60, True) + self.setWait(3 * 60 * 60, True) self.wait() self.retry() |