mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
Properly show checkupdates error messages
This commit is contained in:
parent
685eb188b1
commit
90d60cc8ff
1 changed files with 4 additions and 0 deletions
|
|
@ -368,13 +368,17 @@ def main():
|
|||
(version, vercode, tag) = check_tags(app, pattern)
|
||||
elif mode == 'RepoManifest':
|
||||
(version, vercode) = check_repomanifest(app)
|
||||
msg = vercode
|
||||
elif mode.startswith('RepoManifest/'):
|
||||
tag = mode[13:]
|
||||
(version, vercode) = check_repomanifest(app, tag)
|
||||
msg = vercode
|
||||
elif mode == 'RepoTrunk':
|
||||
(version, vercode) = check_repotrunk(app)
|
||||
msg = vercode
|
||||
elif mode == 'HTTP':
|
||||
(version, vercode) = check_http(app)
|
||||
msg = vercode
|
||||
elif mode in ('None', 'Static'):
|
||||
version = None
|
||||
msg = 'Checking disabled'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue