fix: Remove strict slashes from index routes
All checks were successful
Build Docker / BuildImage (push) Successful in 48s

This commit is contained in:
2025-10-30 19:50:03 +11:00
parent 872373dffd
commit 7b2b3659bb
8 changed files with 15 additions and 16 deletions

View File

@@ -108,7 +108,7 @@ def render_home(handshake_scripts: str | None = None):
)
@app.route("/")
@app.route("/", strict_slashes=False)
def index():
if not isCLI(request):
return render_home(handshake_scripts=getHandshakeScript(request.host))