From 78e13dbd829de317d1bf41eacbb10522983fd42a Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 29 May 2020 14:05:46 +0100 Subject: [PATCH] No html check for favicon --- daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.py b/daemon.py index bd111efb..a7506958 100644 --- a/daemon.py +++ b/daemon.py @@ -1143,7 +1143,7 @@ class PubServer(BaseHTTPRequestHandler): return # favicon image - if htmlGET and 'favicon.ico' in self.path: + if 'favicon.ico' in self.path: # custom favicon faviconFilename = \ self.server.baseDir + '/favicon.ico'