From: moisseev Date: Sun, 9 Oct 2022 15:40:30 +0000 (+0300) Subject: [Minor] Fix copy-paste error X-Git-Tag: 3.4~63^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1225632c64ebd2d1b4cd4e8da04e996f285f26b0;p=rspamd.git [Minor] Fix copy-paste error PR: #4302 --- diff --git a/src/libserver/http/http_router.c b/src/libserver/http/http_router.c index ae8a0329f..5c4990ab6 100644 --- a/src/libserver/http/http_router.c +++ b/src/libserver/http/http_router.c @@ -41,7 +41,7 @@ static const struct _rspamd_http_magic { [HTTP_MAGIC_HTML] = { "html", "text/html" }, [HTTP_MAGIC_CSS] = { "css", "text/css" }, [HTTP_MAGIC_JS] = { "js", "application/javascript" }, - [HTTP_MAGIC_PNG] = { "png", "image/x-icon" }, + [HTTP_MAGIC_ICO] = { "ico", "image/x-icon" }, [HTTP_MAGIC_PNG] = { "png", "image/png" }, [HTTP_MAGIC_JPG] = { "jpg", "image/jpeg" }, };