From a903995ee7a34913f548592f7215d8a8a2a99d7e Mon Sep 17 00:00:00 2001 From: Will Norris Date: Tue, 2 Oct 2018 16:14:12 +0000 Subject: [PATCH] empty ContentTypes allows all types --- imageproxy.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imageproxy.go b/imageproxy.go index 26b6dd3..4152a86 100644 --- a/imageproxy.go +++ b/imageproxy.go @@ -73,8 +73,8 @@ type Proxy struct { // If true, log additional debug messages Verbose bool - // ContentTypes specifies a list of content types to allow. An empty list means only image types - // are allowed. + // ContentTypes specifies a list of content types to allow. An empty + // list means all content types are allowed. ContentTypes []string }