summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-04-14 12:34:06 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-04-14 12:34:06 +0200
commit13043098a33d7874067dfe096c26a0a742760e5c (patch)
treeb1d79f8f0732681d021a7a2f661937c742f84b9f
parentMBLinkInfo: updated pattern (diff)
parentUpdate UploadedTo.py (diff)
downloadpyload-13043098a33d7874067dfe096c26a0a742760e5c.tar.xz
Merge pull request #83 from healthhazard/patch-1
Update UploadedTo.py
-rw-r--r--module/plugins/hoster/UploadedTo.py4
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()