Skip to content

Commit

Permalink
[Minor] Fix copy-paste error
Browse files Browse the repository at this point in the history
PR: #4302
  • Loading branch information
moisseev committed Oct 9, 2022
1 parent b5ec6e4 commit 1225632
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 1225632

Please sign in to comment.