From 272046d94adbe8f17fccbbbbe09c327a5209c23d Mon Sep 17 00:00:00 2001 From: Dale Whittaker Date: Thu, 17 Jul 2008 12:34:34 +0200 Subject: [PATCH] Add image/vnd.microsoft.icon to favicon support --- midori/midori-webview.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }