From b7c5e8958abcb5ed56bd9aab76c99e15b8023833 Mon Sep 17 00:00:00 2001 From: Tagada <36127788+Tagadda@users.noreply.github.com> Date: Tue, 13 Sep 2022 23:09:00 +0200 Subject: [PATCH] Fix a bug introduced with antifeatures --- list_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/list_builder.py b/list_builder.py index 93f77dd..2280e0d 100755 --- a/list_builder.py +++ b/list_builder.py @@ -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", [])) ), }