mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
apps: hotfix for funky issue, apps getting named 'undefined'
This commit is contained in:
parent
ced222eaa5
commit
781f924e30
1 changed files with 4 additions and 0 deletions
|
@ -1157,6 +1157,10 @@ def app_install(
|
|||
recursive=True,
|
||||
)
|
||||
|
||||
# Hotfix for bug in the webadmin while we fix the actual issue :D
|
||||
if label == "undefined":
|
||||
label = None
|
||||
|
||||
# Override manifest name by given label
|
||||
# This info is also later picked-up by the 'permission' resource initialization
|
||||
if label:
|
||||
|
|
Loading…
Add table
Reference in a new issue