mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge pull request #1521 from Salamandar/fix_domain_page
domain_info: Some apps don't have path
This commit is contained in:
commit
8e4ddc00dc
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ def domain_info(domain):
|
|||
settings = _get_app_settings(app)
|
||||
if settings.get("domain") == domain:
|
||||
apps.append(
|
||||
{"name": app_info(app)["name"], "id": app, "path": settings["path"]}
|
||||
{"name": app_info(app)["name"], "id": app, "path": settings.get("path", "")}
|
||||
)
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Reference in a new issue