]> spindle.queued.net Git - midori/commitdiff
Don't regard about: URIs as external
authorPaweł Forysiuk <tuxator@o2.pl>
Thu, 21 Oct 2010 18:49:24 +0000 (20:49 +0200)
committerChristian Dywan <christian@twotoasts.de>
Thu, 21 Oct 2010 19:09:01 +0000 (21:09 +0200)
midori/sokoke.c

index bce377b8932bd37ea34281721867709640a95c4f..3ea06d25af8dc6717e2f67687fbc1a2bc5754c27 100644 (file)
@@ -745,7 +745,8 @@ sokoke_external_uri (const gchar* uri)
     gchar* scheme;
     GAppInfo* info;
 
-    if (!uri || !strncmp (uri, "http", 4))
+    if (!uri || !strncmp (uri, "http", 4)
+             || !strncmp (uri, "about:", 6))
         return FALSE;
 
     scheme = g_uri_parse_scheme (uri);