From eef6d558777888223a6f2a34a517e6ca80f756f8 Mon Sep 17 00:00:00 2001 From: FermeLeLundi Date: Thu, 28 Nov 2024 10:27:33 +0000 Subject: [PATCH] Update modules/typesniffer/typesniffer.go Typo --- modules/typesniffer/typesniffer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/typesniffer/typesniffer.go b/modules/typesniffer/typesniffer.go index 64037af8d3..212e50c4f1 100644 --- a/modules/typesniffer/typesniffer.go +++ b/modules/typesniffer/typesniffer.go @@ -108,7 +108,7 @@ func DetectContentType(data []byte) SniffedType { } } - // AVIF is unsuported by http.DetectContentType + // AVIF is unsupported by http.DetectContentType // Signature taken from https://stackoverflow.com/a/68322450 if bytes.Index(data, []byte("ftypavif")) == 4 { ct = AvifMimeType