Don't regard about: URIs as external

This commit is contained in:
Paweł Forysiuk 2010-10-21 20:49:24 +02:00 committed by Christian Dywan
parent 9f30695ca3
commit 45ebf4dcdb

View 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);