From ebbe61e2b28be073bd0f977f7c3e3521e011ff1b Mon Sep 17 00:00:00 2001 From: ION606 Date: Mon, 17 Feb 2025 14:56:06 -0500 Subject: [PATCH] bug fix --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 1de1b2a..f0c8648 100644 --- a/app.py +++ b/app.py @@ -74,7 +74,7 @@ def isDefaultRoute(hostname: str): if hostname.count(".") < 2: return True - subdomain = hostname.host.split(".")[0] + subdomain = hostname.split(".")[0] return not subdomain or subdomain in RESERVED_SUBDOMAINS