1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

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
commit 8f4ef11a7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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", []))
), ),
} }