From 684787bcb72aece2aa914597a3bc8788432e66f7 Mon Sep 17 00:00:00 2001 From: Leonardo Bishop Date: Sun, 13 Jul 2025 21:23:34 +0100 Subject: Add flags --- web/command/handler/site.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'web/command/handler/site.go') diff --git a/web/command/handler/site.go b/web/command/handler/site.go index 73ea1a0..ab1d8e5 100644 --- a/web/command/handler/site.go +++ b/web/command/handler/site.go @@ -1,7 +1,6 @@ package handler import ( - "fmt" "net/http" "github.com/LMBishop/scrapbook/pkg/config" @@ -15,11 +14,11 @@ func GetSite(mainConfig *config.MainConfig, index *index.SiteIndex) func(http.Re return ghttp.Adapt(func(w http.ResponseWriter, r *http.Request) (Node, error) { siteName := r.PathValue("site") if siteName == "" { - return nil, fmt.Errorf("unknown site") + return html.ErrorPage("Unknown site: " + siteName), nil } site := index.GetSite(siteName) if site == nil { - return nil, fmt.Errorf("unknown site") + return html.ErrorPage("Unknown site: " + siteName), nil } return html.SitePage(mainConfig, site), nil -- cgit v1.2.3-70-g09d2