This commit is contained in:
2025-02-17 14:56:06 -05:00
parent 058a1c3871
commit ebbe61e2b2
+1 -1
View File
@@ -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