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

Fix a bug introduced with antifeatures

This commit is contained in:
Tagada 2022-09-13 23:09:00 +02:00 committed by GitHub
parent 1c61a76cc8
commit 5278251b1d
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", []),
"potential_alternative_to": infos.get("potential_alternative_to", []),
"antifeatures": list(
set(manifest.get("antifeatures", []) + infos.get("antifeatures", []))
set(list(manifest.get("antifeatures", {}).keys()) + infos.get("antifeatures", []))
),
}