0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2025-01-06 22:40:31 -05:00

markdown: Fix 500 error (#2266)

This commit is contained in:
Alexander Danilov 2018-08-16 08:35:06 +03:00 committed by Matt Holt
parent d3b731e925
commit 89c20f9a55

View file

@ -142,7 +142,7 @@ func (md Markdown) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error
case err == nil: // nop
case os.IsPermission(err):
return http.StatusForbidden, err
case os.IsExist(err):
case os.IsNotExist(err):
return http.StatusNotFound, nil
default: // did we run out of FD?
return http.StatusInternalServerError, err