From 5db1c4a4ec183ce3b60f10853b2dae4f1386f2cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sandstr=C3=B6m?= Date: Wed, 10 Apr 2024 14:36:25 +0200 Subject: [PATCH] fixed error (#190) * bugfix - existing_path variable not set. --- apps/views.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/views.py b/apps/views.py index 916cdfd4..4b592c71 100644 --- a/apps/views.py +++ b/apps/views.py @@ -213,6 +213,7 @@ def get(self, request, project, ai_id): existing_app_description = appinstance.description existing_app_release_name = appinstance.parameters.get("release", None) existing_userid = None + existing_path = None existing_source_code_url = appinstance.source_code_url # Settings for custom app @@ -265,6 +266,7 @@ def filter_func(): "all_tags": all_tags, "show_permissions": show_permissions, "existing_app_name": existing_app_name, + "existing_path": existing_path, "existing_app_description": existing_app_description, "existing_app_release_name": existing_app_release_name, "existing_userid": existing_userid,