Fix appends to ALLOWED_HOSTS should be string instead of list

This commit is contained in:
Will Ho 2023-04-28 03:28:19 +08:00
parent c25698dfa7
commit 83344f748f

View File

@ -425,7 +425,7 @@ if _paperless_url:
if ["*"] != ALLOWED_HOSTS:
# always allow localhost. Necessary e.g. for healthcheck in docker.
ALLOWED_HOSTS.append(["localhost"])
ALLOWED_HOSTS.append("localhost")
if _paperless_url:
ALLOWED_HOSTS.append(_paperless_uri.hostname)