[object Object]

← back to Stock Vshape Viewer

Panel spec 14/14 green; serve /favicon.ico as 204 to eliminate the only 404 (real fix, not a filtered assertion)

254436e19488dbb555b073ccc1d33f1d4aebfc70 · 2026-08-27 14:06:50 -0700 · Steve

Files touched

Diff

commit 254436e19488dbb555b073ccc1d33f1d4aebfc70
Author: Steve <steve@designerwallcoverings.com>
Date:   Thu Aug 27 14:06:50 2026 -0700

    Panel spec 14/14 green; serve /favicon.ico as 204 to eliminate the only 404 (real fix, not a filtered assertion)
---
 server.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/server.js b/server.js
index 042ce53..8a38eec 100644
--- a/server.js
+++ b/server.js
@@ -141,6 +141,7 @@ const server = http.createServer(async (req, res) => {
   if (u !== USER || p !== PASS) return unauthorized(res);
 
   const [pathname, query] = (req.url || '/').split('?');
+  if (pathname === '/favicon.ico') { res.writeHead(204); return res.end(); } // no spurious 404
   const P = new URLSearchParams(query || '');
   const tick = () => (P.get('ticker') || '').toUpperCase().replace(/[^A-Z.\-]/g, '');
 

← 9b99f9e 3D volume-extruded ribbons: each layer's z-thickness swells/  ·  back to Stock Vshape Viewer  ·  Add GO button at bottom of filter section — runs the scan wi 93ee25b →