mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] catalog: default values for categories & antifeatures
This commit is contained in:
parent
d3d18c5ff2
commit
f405bfb613
1 changed files with 2 additions and 2 deletions
|
@ -272,7 +272,7 @@ def _load_apps_catalog():
|
|||
merged_catalog["apps"][app] = info
|
||||
|
||||
# Annnnd categories + antifeatures
|
||||
merged_catalog["categories"] += apps_catalog_content["categories"]
|
||||
merged_catalog["antifeatures"] += apps_catalog_content["antifeatures"]
|
||||
merged_catalog["categories"] += apps_catalog_content.get("categories", [])
|
||||
merged_catalog["antifeatures"] += apps_catalog_content.get("antifeatures", [])
|
||||
|
||||
return merged_catalog
|
||||
|
|
Loading…
Add table
Reference in a new issue