diff --git a/src/app.py b/src/app.py index 946b46705..06310871e 100644 --- a/src/app.py +++ b/src/app.py @@ -1028,6 +1028,7 @@ def app_install( ) # Override manifest name by given label + # This info is also later picked-up by the 'permission' resource initialization if label: manifest["name"] = label diff --git a/src/app_catalog.py b/src/app_catalog.py index ea9b0f53e..22a878579 100644 --- a/src/app_catalog.py +++ b/src/app_catalog.py @@ -272,6 +272,7 @@ def _load_apps_catalog(): merged_catalog["apps"][app] = info # Annnnd categories + antifeatures + # (we use .get here, only because the dev catalog doesnt include the categories/antifeatures keys) merged_catalog["categories"] += apps_catalog_content.get("categories", []) merged_catalog["antifeatures"] += apps_catalog_content.get("antifeatures", [])