From 74fb1a0fe941e90feb136c5a31eb45a1e2c3d4a9 Mon Sep 17 00:00:00 2001 From: George Hunt Date: Sun, 22 Dec 2019 19:51:29 +0000 Subject: [PATCH] one more splash --- roles/captiveportal/templates/capture-wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/captiveportal/templates/capture-wsgi.py b/roles/captiveportal/templates/capture-wsgi.py index b4b5c13ca..b843a34a4 100755 --- a/roles/captiveportal/templates/capture-wsgi.py +++ b/roles/captiveportal/templates/capture-wsgi.py @@ -348,7 +348,7 @@ def put_204(environ, start_response): def put_302(environ, start_response): status = '302 Moved Temporarily' response_body = b'' - location = "http://" + fully_qualified_domain_name + "/home" + location = "http://" + fully_qualified_domain_name + '{{ captiveportal_splash_page }}' response_headers = [('Content-type','text/html'), ('Location',location), ('Content-Length',str(len(response_body)))]