diff --git a/core/http/src/known_media_types.rs b/core/http/src/known_media_types.rs index d00bd596..afd84ba4 100644 --- a/core/http/src/known_media_types.rs +++ b/core/http/src/known_media_types.rs @@ -18,6 +18,7 @@ macro_rules! known_media_types { JPEG (is_jpeg): "JPEG", "image", "jpeg", WEBP (is_webp): "WEBP", "image", "webp", SVG (is_svg): "SVG", "image", "svg+xml", + Icon (is_icon): "Icon", "image", "x-icon", WEBM (is_webm): "WEBM", "video", "webm", OGG (is_ogg): "OGG", "video", "ogg", FLAC (is_flac): "FLAC", "audio", "flac", @@ -49,6 +50,7 @@ macro_rules! known_extensions { "jpg" => JPEG, "webp" => WEBP, "svg" => SVG, + "ico" => Icon, "flac" => FLAC, "wav" => WAV, "webm" => WEBM,