1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-08-15 19:00:11 +02:00

Only add AF xml element if there actually are AFs

This commit is contained in:
Daniel Martí 2013-12-23 12:04:50 +01:00
parent 588277479b
commit 2757ec60c8

View File

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