mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
fix: some test apps has empty string domain
This commit is contained in:
parent
5e81579c31
commit
d36ca72887
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ def app_info(app, full=False, upgradable=False):
|
|||
rendered_notifications[name][lang] = rendered_content
|
||||
ret["manifest"]["notifications"][step] = rendered_notifications
|
||||
|
||||
ret["is_webapp"] = "domain" in settings and "path" in settings
|
||||
ret["is_webapp"] = "domain" in settings and settings["domain"] and "path" in settings
|
||||
|
||||
if ret["is_webapp"]:
|
||||
ret["is_default"] = (
|
||||
|
|
Loading…
Add table
Reference in a new issue