]> spindle.queued.net Git - midori/commitdiff
Treat "about:blank" and "" equally in midori_view_set_uri
authorChristian Dywan <christian@twotoasts.de>
Sat, 16 May 2009 22:01:52 +0000 (00:01 +0200)
committerChristian Dywan <christian@twotoasts.de>
Sat, 16 May 2009 22:01:52 +0000 (00:01 +0200)
This solves the problem of open speed dial tabs in the session
coming back as blank tabs after a restart of Midori.

midori/midori-view.c

index 79cd2eb7d2af0c2b49d857cf9563b7645ec8e042..2e5466a36bf78c16b482e40e95f2a8df4f31fb36 100644 (file)
@@ -2006,6 +2006,8 @@ midori_view_set_uri (MidoriView*  view,
 
     g_return_if_fail (MIDORI_IS_VIEW (view));
 
+    /* Treat "about:blank" and "" equally, see midori_view_is_blank(). */
+    if (!g_strcmp0 (uri, "about:blank")) uri = "";
     if (!uri) uri = "";
 
     if (1)