Fix fallback for instance API host

Fixes #522
pull/530/head
Andrew Godwin 2023-03-03 15:04:13 -07:00
rodzic 78eacf165e
commit bd6d1ae8de
1 zmienionych plików z 1 dodań i 3 usunięć

Wyświetl plik

@ -59,9 +59,7 @@ def instance_info_v2(request) -> dict:
request.headers.get("host", settings.SETUP.MAIN_DOMAIN)
)
if current_domain is None or not current_domain.local:
current_domain = Domain.get_domain(
request.headers.get(settings.SETUP.MAIN_DOMAIN)
)
current_domain = Domain.get_domain(settings.SETUP.MAIN_DOMAIN)
if current_domain is None:
raise ValueError("No domain set up for MAIN_DOMAIN")
admin_identity = (