From b0d03d2d18de72b305546fb8f899ff5dcc10fafd Mon Sep 17 00:00:00 2001 From: Jan-Lukas Else Date: Sat, 11 Dec 2021 19:58:15 +0100 Subject: [PATCH] Add missing router path --- httpRouters.go | 1 + 1 file changed, 1 insertion(+) diff --git a/httpRouters.go b/httpRouters.go index 58d744f..4702620 100644 --- a/httpRouters.go +++ b/httpRouters.go @@ -346,6 +346,7 @@ func (a *goBlog) blogEditorRouter(conf *configBlog) func(r chi.Router) { r.Get("/unlisted"+paginationPath, a.serveUnlisted) r.Get("/scheduled", a.serveScheduled) r.Get("/scheduled"+feedPath, a.serveScheduled) + r.Get("/scheduled"+paginationPath, a.serveScheduled) r.HandleFunc("/preview", a.serveEditorPreview) } }