Skip to content

Commit

Permalink
Merge pull request #4305 from moisseev/favicon
Browse files Browse the repository at this point in the history
[Minor] Fix copy-paste error
  • Loading branch information
vstakhov committed Oct 9, 2022
2 parents b5ec6e4 + 1225632 commit 0fa3836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libserver/http/http_router.c
Expand Up @@ -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" },
};
Expand Down

0 comments on commit 0fa3836

Please sign in to comment.