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