Don't regard about: URIs as external
This commit is contained in:
parent
9f30695ca3
commit
45ebf4dcdb
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue