mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-13 02:30:11 +01:00
Only add AF xml element if there actually are AFs
This commit is contained in:
parent
588277479b
commit
2757ec60c8
@ -578,7 +578,8 @@ def make_index(apps, apks, repodir, archive, categories):
|
||||
# filtering can be removed in time...
|
||||
if 'UpstreamNonFree' in af:
|
||||
af.remove('UpstreamNonFree')
|
||||
addElement('antifeatures', ','.join(af), doc, apel)
|
||||
if af:
|
||||
addElement('antifeatures', ','.join(af), doc, apel)
|
||||
if app['Requires Root']:
|
||||
addElement('requirements', 'root', doc, apel)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user