Fix a bug introduced with antifeatures

This commit is contained in:
Tagada 2022-09-13 23:09:00 +02:00 committed by GitHub
parent f99b497ffd
commit b7c5e8958a

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