mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-08 18:31:07 +03:00
Hotfix for 7b68b90569
- don't cal .split() on None
This commit is contained in:
parent
7b68b90569
commit
7b2f7077bc
1 changed files with 13 additions and 11 deletions
|
@ -832,6 +832,7 @@ def make_index(apps, sortedids, apks, repodir, archive, categories):
|
|||
addElement('marketversion', app['Current Version'], doc, apel)
|
||||
addElement('marketvercode', app['Current Version Code'], doc, apel)
|
||||
|
||||
if app['AntiFeatures']:
|
||||
af = app['AntiFeatures'].split(',')
|
||||
# TODO: Temporarily not including UpstreamNonFree in the index,
|
||||
# because current F-Droid clients do not understand it, and also
|
||||
|
@ -841,6 +842,7 @@ def make_index(apps, sortedids, apks, repodir, archive, categories):
|
|||
af.remove('UpstreamNonFree')
|
||||
if af:
|
||||
addElement('antifeatures', ','.join(af), doc, apel)
|
||||
if app['Provides']:
|
||||
pv = app['Provides'].split(',')
|
||||
addElement('provides', ','.join(pv), doc, apel)
|
||||
if app['Requires Root']:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue