mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
Fix checkupdates appid managing
This commit is contained in:
parent
758f88af7b
commit
685eb188b1
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ def check_repomanifest(app, branch=None):
|
|||
|
||||
try:
|
||||
|
||||
appid = app['Update Check Name'] if 'Update Check Name' in app else app['id']
|
||||
appid = app['Update Check Name'] if app['Update Check Name'] else app['id']
|
||||
if app['Repo Type'] == 'srclib':
|
||||
build_dir = os.path.join('build', 'srclib', app['Repo'])
|
||||
repotype = common.getsrclibvcs(app['Repo'])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue