mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
[checkupdates] make no version information an error
This commit is contained in:
parent
58dcb4c2a0
commit
16f8d50194
1 changed files with 1 additions and 1 deletions
|
|
@ -456,7 +456,7 @@ def checkupdates_app(app):
|
||||||
|
|
||||||
updating = False
|
updating = False
|
||||||
if version is None:
|
if version is None:
|
||||||
logging.warning('no version information found for {appid}'.format(appid=app.id))
|
raise FDroidException(_('no version information found'))
|
||||||
elif vercode == app.CurrentVersionCode:
|
elif vercode == app.CurrentVersionCode:
|
||||||
logging.debug("...up to date")
|
logging.debug("...up to date")
|
||||||
elif int(vercode) > int(app.CurrentVersionCode):
|
elif int(vercode) > int(app.CurrentVersionCode):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue