From 4e261e7576ede476bd03ef1efd5b5780faaadc4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Cuervo?= Date: Wed, 26 Apr 2023 16:17:13 -0400 Subject: Fix favicon --- assets/favicon.ico | Bin 0 -> 15406 bytes web.tcl | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100755 assets/favicon.ico diff --git a/assets/favicon.ico b/assets/favicon.ico new file mode 100755 index 00000000..7eab4eb2 Binary files /dev/null and b/assets/favicon.ico differ diff --git a/web.tcl b/web.tcl index b52d3b52..fcbfb6e8 100644 --- a/web.tcl +++ b/web.tcl @@ -59,7 +59,7 @@ proc handlePage {path contentTypeVar} { }] } elseif {$path eq "/favicon.ico"} { set contentType "image/x-icon" - set fd [open "../favicon.ico" r] + set fd [open "assets/favicon.ico" r] fconfigure $fd -encoding binary -translation binary set response [read $fd]; close $fd; return $response -- cgit v1.2.3