diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-04-14 12:34:06 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-04-14 12:34:06 +0200 |
commit | 13043098a33d7874067dfe096c26a0a742760e5c (patch) | |
tree | b1d79f8f0732681d021a7a2f661937c742f84b9f | |
parent | MBLinkInfo: updated pattern (diff) | |
parent | Update UploadedTo.py (diff) | |
download | pyload-13043098a33d7874067dfe096c26a0a742760e5c.tar.xz |
Merge pull request #83 from healthhazard/patch-1
Update UploadedTo.py
-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() |