From 781f924e30d8864e3908cdf402de8911aad42a41 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 17 Jul 2023 21:13:34 +0200 Subject: [PATCH] apps: hotfix for funky issue, apps getting named 'undefined' --- src/app.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app.py b/src/app.py index 6f18d341f..75d336241 100644 --- a/src/app.py +++ b/src/app.py @@ -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: