fix: fix static assets url generation (#965)

This commit is contained in:
Oleg Lobanov 2020-05-31 22:24:18 +02:00
parent 6e5405eeed
commit ba47e3b2fe
No known key found for this signature in database
GPG key ID: 7CC64E41212621B0
5 changed files with 13 additions and 13 deletions

View file

@ -43,7 +43,7 @@ func errToStatus(err error) int {
// This is an addaptation if http.StripPrefix in which we don't
// return 404 if the page doesn't have the needed prefix.
func stripPrefix(prefix string, h http.Handler) http.Handler {
if prefix == "" {
if prefix == "" || prefix == "/" {
return h
}