From de97fcbd121b1d56b74175fd79ef594ef34e71c8 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 20 Dec 2021 19:42:02 +0100 Subject: [PATCH] fix: lint --- pkg/modules/background/handler/background.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/modules/background/handler/background.go b/pkg/modules/background/handler/background.go index 6c8a8a2f1..282e0578d 100644 --- a/pkg/modules/background/handler/background.go +++ b/pkg/modules/background/handler/background.go @@ -18,9 +18,9 @@ package handler import ( "image" - _ "image/gif" - _ "image/jpeg" - _ "image/png" + _ "image/gif" // To make sure the decoder used for generating blurHashes recognizes gifs + _ "image/jpeg" // To make sure the decoder used for generating blurHashes recognizes jpgs + _ "image/png" // To make sure the decoder used for generating blurHashes recognizes pngs "io" "net/http" "strconv"