diff --git a/favicon.png b/favicon.png new file mode 100644 index 0000000..723c1e7 Binary files /dev/null and b/favicon.png differ diff --git a/handlers.go b/handlers.go index 1b74d06..6194306 100644 --- a/handlers.go +++ b/handlers.go @@ -47,7 +47,7 @@ func (self writeFlusher) Flush() error { func wsStaticFiles(w http.ResponseWriter, r *http.Request) { switch r.URL.Path { case "/favicon.ico": - http.ServeFile(w, r, "./static/favicon.png") + http.ServeFile(w, r, "./favicon.png") return case "/justchat": http.ServeFile(w, r, "./static/justchat.html") diff --git a/static/favicon.png b/static/favicon.png deleted file mode 100644 index 63ead97..0000000 Binary files a/static/favicon.png and /dev/null differ