mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 07:22:29 +03:00
Allowed for APKs with bad names, and added Mobile C64, which is one of those
This commit is contained in:
parent
88be9b9fc4
commit
06cc795565
4 changed files with 23 additions and 2 deletions
|
@ -152,11 +152,13 @@ for app in apps:
|
|||
bestapk = apk
|
||||
|
||||
if bestver == 0:
|
||||
app['name'] = app['id']
|
||||
if app['name'] is None:
|
||||
app['name'] = app['id']
|
||||
app['icon'] = ''
|
||||
print "WARNING: Application " + app['id'] + " has no packages"
|
||||
else:
|
||||
app['name'] = bestapk['name']
|
||||
if app['name'] is None:
|
||||
app['name'] = bestapk['name']
|
||||
app['icon'] = bestapk['icon']
|
||||
|
||||
# Generate warnings for apk's with no metadata (or create skeleton
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue