From e1c324ac1932109c6b648ecfc2ae0fdf9385f5ef Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Wed, 11 Feb 2026 18:24:23 +1100 Subject: [PATCH] feat: Remove HNS redirect --- tools.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tools.py b/tools.py index 159cb1f..b12d4b8 100644 --- a/tools.py +++ b/tools.py @@ -137,14 +137,15 @@ def getHandshakeScript(host: str) -> str: Get the handshake script HTML snippet. Args: - domain (str): The domain to use in the handshake script + host (str): The host string from the request Returns: str: The handshake script HTML snippet """ - if isDev(host): - return "" - return '' + return "" + # if isDev(host): + # return "" + # return '' @lru_cache(maxsize=64)