From b693441893f80b8ebdeb17afd05cfcb1d11e1569 Mon Sep 17 00:00:00 2001 From: clsr Date: Tue, 15 Nov 2016 21:09:13 +0100 Subject: Insert a missing return --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 37d5374..5fe7e68 100644 --- a/main.go +++ b/main.go @@ -290,6 +290,7 @@ func handleDeletionLog(w http.ResponseWriter, r *http.Request) { func handle(w http.ResponseWriter, r *http.Request) { if r.URL.Path == deletionPath || strings.HasPrefix(r.URL.Path, prefix+"static/") { http.DefaultServeMux.ServeHTTP(w, r) + return } if !strings.HasPrefix(r.URL.Path, prefix) { -- cgit