summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés Cuervo <acwervo@gmail.com>2023-04-26 20:17:13 +0000
committerAndrés Cuervo <acwervo@gmail.com>2023-04-26 20:17:13 +0000
commit4e261e7576ede476bd03ef1efd5b5780faaadc4e (patch)
tree766d04dd107ad6cb9f54e10c52888ea6a0c57cf5
parentPort flamegraph make targets to main branch (diff)
downloadfolk-4e261e7576ede476bd03ef1efd5b5780faaadc4e.tar.gz
folk-4e261e7576ede476bd03ef1efd5b5780faaadc4e.zip
Fix favicon
-rwxr-xr-xassets/favicon.icobin0 -> 15406 bytes
-rw-r--r--web.tcl2
2 files changed, 1 insertions, 1 deletions
diff --git a/assets/favicon.ico b/assets/favicon.ico
new file mode 100755
index 00000000..7eab4eb2
--- /dev/null
+++ b/assets/favicon.ico
Binary files 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