From: Christian Dywan Date: Sun, 20 May 2012 19:59:35 +0000 (+0200) Subject: Check download-mime-type which may not be set X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ee6612f625a5f4e8375abb122327f93bc148258;p=midori Check download-mime-type which may not be set Not all downloads go through MIME type policy. --- diff --git a/midori/midori-view.c b/midori/midori-view.c index eec4588a..757707c0 100644 --- a/midori/midori-view.c +++ b/midori/midori-view.c @@ -2941,8 +2941,11 @@ webkit_web_view_download_requested_cb (GtkWidget* web_view, dialog = gtk_message_dialog_new ( NULL, 0, GTK_MESSAGE_WARNING, GTK_BUTTONS_NONE, _("Open or download file")); - mime_type = g_object_get_data(G_OBJECT (view), "download-mime-type"); - content_type = g_content_type_from_mime_type (mime_type); + mime_type = g_object_get_data (G_OBJECT (view), "download-mime-type"); + if (mime_type != NULL) + content_type = g_content_type_from_mime_type (mime_type); + else + content_type = NULL; if (!content_type) content_type = g_content_type_guess ( webkit_download_get_suggested_filename (download), NULL, 0, NULL);