1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

Check for updates a bit slower

This commit is contained in:
Ciaran Gultnieks 2012-02-01 17:37:42 +00:00
parent e15baaffcb
commit 22701c67ed
2 changed files with 2 additions and 1 deletions

View File

@ -2,3 +2,4 @@
GreenDroid/
ActionBarSherlock/
FacebookSDK/
OI/

View File

@ -35,7 +35,7 @@ execfile('config.py')
# Returns (None, "a message") if this didn't work, or (version, vercode) for
# the details of the current version.
def check_market(app):
time.sleep(5)
time.sleep(10)
url = 'http://market.android.com/details?id=' + app['id']
req = urllib.urlopen(url)
if req.getcode() == 404: