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)