From 9a23387a6b8cfb3bcc3e08cce9abc9780ed737fe Mon Sep 17 00:00:00 2001 From: Seednode Date: Fri, 9 Jun 2023 15:56:03 -0500 Subject: [PATCH] Added favicon to HTML debug page --- cmd/root.go | 2 +- cmd/web.go | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index a2aceea..9a58dd1 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -11,7 +11,7 @@ import ( ) const ( - Version string = "0.51.3" + Version string = "0.51.4" ) var ( diff --git a/cmd/web.go b/cmd/web.go index 2b9b864..0c35fd1 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -671,6 +671,13 @@ func serveDebugHtml(args []string, index *Index) httprouter.Handle { var htmlBody strings.Builder htmlBody.WriteString(``) + htmlBody.WriteString(``) + htmlBody.WriteString(``) + htmlBody.WriteString(``) + htmlBody.WriteString(``) + htmlBody.WriteString(``) + htmlBody.WriteString(``) + htmlBody.WriteString(``) htmlBody.WriteString(``) htmlBody.WriteString(`Index contains `) htmlBody.WriteString(fileCount)