Skip to content

Commit

Permalink
fixed error (#190)
Browse files Browse the repository at this point in the history
* bugfix - existing_path variable not set.
  • Loading branch information
sandstromviktor authored Apr 10, 2024
1 parent c2625fb commit 5db1c4a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 5db1c4a

Please sign in to comment.