From f3b9d67b77f85e4bfb62ebf2d7c8d83c059c978a Mon Sep 17 00:00:00 2001 From: parsec Date: Thu, 16 Mar 2023 21:51:18 -0400 Subject: [PATCH] go fmt --- fallback.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fallback.go b/fallback.go index 94ec419..3213bf6 100644 --- a/fallback.go +++ b/fallback.go @@ -14,8 +14,8 @@ type fallback struct { func OpenDefault(fb fallback, requestPath string) (http.File, error) { requestPath = path.Dir(requestPath) - defaultFile := requestPath + "/" + fb.defaultPath; - + defaultFile := requestPath + "/" + fb.defaultPath + f, err := fb.fs.Open(defaultFile) if os.IsNotExist(err) && requestPath != "" { parentPath, _ := path.Split(requestPath)