fix: Exclude no data page from redirecting
All checks were successful
Build Docker / Build SLDs Image (push) Successful in 18s
Build Docker / Build Main Image (push) Successful in 20s

This commit is contained in:
Nathan Woodburn 2023-11-20 12:00:06 +11:00
parent fa5915b0df
commit b968c90c2f
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -351,7 +351,7 @@ def catch_all(path):
account_link = "account"
account_link_name = "Account"
site = user['domain'] + "." + CITY_DOMAIN
elif path != "signup" and path != "login":
elif path != "signup" and path != "login" and path != "empty_site":
return redirect('/')
if path == "account":