From: Dale Whittaker Date: Thu, 17 Jul 2008 10:34:34 +0000 (+0200) Subject: Add image/vnd.microsoft.icon to favicon support X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=272046d94adbe8f17fccbbbbe09c327a5209c23d;p=midori Add image/vnd.microsoft.icon to favicon support --- diff --git a/midori/midori-webview.c b/midori/midori-webview.c index 2748efc6..3201607e 100644 --- a/midori/midori-webview.c +++ b/midori/midori-webview.c @@ -939,7 +939,8 @@ midori_web_view_get_icon (MidoriWebView* web_view) { content_type = g_file_info_get_content_type (info); icon = (!strcmp (content_type, "image/x-icon") - || !strcmp (content_type, "image/x-ico")) + || !strcmp (content_type, "image/x-ico") + || !strcmp (content_type, "image/vnd.microsoft.icon")) ? g_file_icon_new (icon_file) : NULL; }