mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Check for updates a bit slower
This commit is contained in:
parent
e15baaffcb
commit
22701c67ed
2 changed files with 2 additions and 1 deletions
1
build/extlib/.gitignore
vendored
1
build/extlib/.gitignore
vendored
|
@ -2,3 +2,4 @@
|
||||||
GreenDroid/
|
GreenDroid/
|
||||||
ActionBarSherlock/
|
ActionBarSherlock/
|
||||||
FacebookSDK/
|
FacebookSDK/
|
||||||
|
OI/
|
||||||
|
|
|
@ -35,7 +35,7 @@ execfile('config.py')
|
||||||
# Returns (None, "a message") if this didn't work, or (version, vercode) for
|
# Returns (None, "a message") if this didn't work, or (version, vercode) for
|
||||||
# the details of the current version.
|
# the details of the current version.
|
||||||
def check_market(app):
|
def check_market(app):
|
||||||
time.sleep(5)
|
time.sleep(10)
|
||||||
url = 'http://market.android.com/details?id=' + app['id']
|
url = 'http://market.android.com/details?id=' + app['id']
|
||||||
req = urllib.urlopen(url)
|
req = urllib.urlopen(url)
|
||||||
if req.getcode() == 404:
|
if req.getcode() == 404:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue