Properly omit user script / styles on special pages

This commit is contained in:
Paweł Forysiuk 2011-09-06 22:44:13 +02:00 committed by Christian Dywan
parent b574501978
commit 602d0e1366

View file

@ -1460,7 +1460,7 @@ addons_context_ready_cb (WebKitWebView* web_view,
uri = katze_object_get_string (web_view, "uri"); uri = katze_object_get_string (web_view, "uri");
/* Don't run scripts or styles on blank or special pages */ /* Don't run scripts or styles on blank or special pages */
if (!(uri && *uri && strncmp (uri, "about:", 6))) if (!(uri && *uri) || !strncmp (uri, "about:", 6))
{ {
g_free (uri); g_free (uri);
return; return;