From 6b3f3d1a645f4221bd04ec3e41948a9bea7ce2c1 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 19 Jun 2020 14:20:19 +0100 Subject: [PATCH] Remove content type from redirect --- daemon.py | 1 - 1 file changed, 1 deletion(-) diff --git a/daemon.py b/daemon.py index acba47922..488218a9f 100644 --- a/daemon.py +++ b/daemon.py @@ -541,7 +541,6 @@ class PubServer(BaseHTTPRequestHandler): self.send_header('Location', redirect) self.send_header('Host', callingDomain) self.send_header('InstanceID', self.server.instanceId) - self.send_header('Content-type', 'text/html; charset=utf-8') self.send_header('Content-Length', '0') self.send_header('X-Robots-Tag', 'noindex') self.end_headers()