We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8257520 commit d923430Copy full SHA for d923430
srv.go
@@ -6,7 +6,6 @@ import (
6
"io"
7
stdlog "log"
8
"net/http"
9
- "strings"
10
"time"
11
12
"github.com/alecthomas/kong"
@@ -156,12 +155,6 @@ func mainHandler(
156
155
log.Println(err)
157
}
158
159
- if checkURLForPNG(r) {
160
- w.Write([]byte("PNG support temporary disabled"))
161
-
162
- return
163
- }
164
165
response, err := rp.ProcessRequest(r)
166
if err != nil {
167
@@ -259,8 +252,3 @@ func setLogLevel(logLevel string) error {
259
252
260
253
return nil
261
254
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