diff options
author | moisseev <moiseev@mezonplus.ru> | 2022-10-09 18:40:30 +0300 |
---|---|---|
committer | moisseev <moiseev@mezonplus.ru> | 2022-10-09 18:42:43 +0300 |
commit | 1225632c64ebd2d1b4cd4e8da04e996f285f26b0 (patch) | |
tree | 578bc28f3b4c625846d754f5b96bd324e26118a6 /src | |
parent | b5ec6e4d005262902a7108e5a988eeb96797455a (diff) | |
download | rspamd-1225632c64ebd2d1b4cd4e8da04e996f285f26b0.tar.gz rspamd-1225632c64ebd2d1b4cd4e8da04e996f285f26b0.zip |
[Minor] Fix copy-paste error
PR: #4302
Diffstat (limited to 'src')
-rw-r--r-- | src/libserver/http/http_router.c | 2 |
1 files changed, 1 insertions, 1 deletions
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" }, }; |