1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 14:30:11 +01:00

Fix checkupdates appid managing

This commit is contained in:
Daniel Martí 2014-03-21 19:11:08 +01:00
parent 758f88af7b
commit 685eb188b1

View File

@ -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'])