mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 23:40:29 +03:00
Fix crash in checkupdates with auto-updates
This commit is contained in:
parent
9198cd4127
commit
3690b89e0a
1 changed files with 2 additions and 1 deletions
|
|
@ -491,7 +491,8 @@ def main():
|
||||||
|
|
||||||
if not gotcur:
|
if not gotcur:
|
||||||
newbuild = latest.copy()
|
newbuild = latest.copy()
|
||||||
del newbuild['origlines']
|
if 'origlines' in newbuild:
|
||||||
|
del newbuild['origlines']
|
||||||
newbuild['disable'] = False
|
newbuild['disable'] = False
|
||||||
newbuild['vercode'] = app['Current Version Code']
|
newbuild['vercode'] = app['Current Version Code']
|
||||||
newbuild['version'] = app['Current Version'] + suffix
|
newbuild['version'] = app['Current Version'] + suffix
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue