mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
[checkupdates] Don't fail for disabled apps
This commit is contained in:
parent
93bf481f8b
commit
58dcb4c2a0
1 changed files with 2 additions and 1 deletions
|
|
@ -434,7 +434,8 @@ def checkupdates_app(app):
|
|||
elif mode == 'HTTP':
|
||||
(version, vercode) = check_http(app)
|
||||
elif mode in ('None', 'Static'):
|
||||
raise MetaDataException(_('Checking disabled'))
|
||||
logging.debug('Checking disabled')
|
||||
return
|
||||
else:
|
||||
raise MetaDataException(_('Invalid UpdateCheckMode: {mode}').format(mode=mode))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue