Skip to content

Commit d923430

Browse files
committed
Reenable PNG queries
1 parent 8257520 commit d923430

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

srv.go

-12
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import (
66
"io"
77
stdlog "log"
88
"net/http"
9-
"strings"
109
"time"
1110

1211
"github.com/alecthomas/kong"
@@ -156,12 +155,6 @@ func mainHandler(
156155
log.Println(err)
157156
}
158157

159-
if checkURLForPNG(r) {
160-
w.Write([]byte("PNG support temporary disabled"))
161-
162-
return
163-
}
164-
165158
response, err := rp.ProcessRequest(r)
166159
if err != nil {
167160
log.Println(err)
@@ -259,8 +252,3 @@ func setLogLevel(logLevel string) error {
259252

260253
return nil
261254
}
262-
263-
func checkURLForPNG(r *http.Request) bool {
264-
url := r.URL.String()
265-
return strings.Contains(url, ".png") && !strings.Contains(url, "/files/")
266-
}

0 commit comments

Comments
 (0)