Fixed unwanted injection of variables on API endpoints.

This commit is contained in:
morpheus65535 2023-01-24 20:13:34 -05:00
parent 5a98dfcf83
commit b0f743767b
1 changed files with 7 additions and 5 deletions

View File

@ -74,12 +74,14 @@ def catch_all(path):
updated = '0'
inject = dict()
inject["baseUrl"] = base_url
inject["canUpdate"] = not args.no_update
inject["hasUpdate"] = updated != '0'
if auth:
inject["apiKey"] = settings.auth.apikey
if not path.startswith('api/'):
inject["baseUrl"] = base_url
inject["canUpdate"] = not args.no_update
inject["hasUpdate"] = updated != '0'
if auth:
inject["apiKey"] = settings.auth.apikey
template_url = base_url
if not template_url.endswith("/"):