Merge pull request #1515 from YunoHost/Tagadda-patch-1

Fix a bug introduced with antifeatures
This commit is contained in:
Alexandre Aubin
2022-10-06 22:41:30 +02:00
committed by GitHub

View File

@ -323,7 +323,7 @@ def build_app_dict(app, infos):
"subtags": infos.get("subtags", []), "subtags": infos.get("subtags", []),
"potential_alternative_to": infos.get("potential_alternative_to", []), "potential_alternative_to": infos.get("potential_alternative_to", []),
"antifeatures": list( "antifeatures": list(
set(manifest.get("antifeatures", []) + infos.get("antifeatures", [])) set(list(manifest.get("antifeatures", {}).keys()) + infos.get("antifeatures", []))
), ),
} }