mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Update src/app.py
Co-authored-by: tituspijean <titus+yunohost@pijean.ovh>
This commit is contained in:
parent
bc30805c7d
commit
36b9188aec
1 changed files with 1 additions and 1 deletions
|
@ -2869,7 +2869,7 @@ def _get_conflicting_apps(domain, path, ignore_app=None):
|
|||
for p, a in apps_map[domain].items():
|
||||
if a["id"] == ignore_app:
|
||||
continue
|
||||
if path == p or ( not path.startswith("/.well-known/") and path == "/" ) or ( not path.startswith("/.well-known/") and p == "/" ):
|
||||
if path == p or ( not path.startswith("/.well-known/") and ( path == "/" or p == "/" ) ):
|
||||
conflicts.append((p, a["id"], a["label"]))
|
||||
|
||||
return conflicts
|
||||
|
|
Loading…
Add table
Reference in a new issue