aboutsummaryrefslogtreecommitdiffstats
path: root/embed/webkit/webkit-embed.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'embed/webkit/webkit-embed.cpp')
-rw-r--r--embed/webkit/webkit-embed.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/embed/webkit/webkit-embed.cpp b/embed/webkit/webkit-embed.cpp
index 742fe99c3..fff4e6f4b 100644
--- a/embed/webkit/webkit-embed.cpp
+++ b/embed/webkit/webkit-embed.cpp
@@ -263,10 +263,11 @@ impl_load (EphyEmbed *embed,
* and lock badly. I copied this function from WebKit's
* GdkLauncher.
*/
- if (strncmp ("http://", url, 7) != 0 &&
+ if (strncmp ("about:", url, 6) != 0 &&
+ strncmp ("http://", url, 7) != 0 &&
strncmp ("https://", url, 8) != 0 &&
- strncmp ("file://", url, 7) != 0 &&
- strncmp ("ftp://", url, 6) != 0)
+ strncmp ("file://", url, 7) != 0 &&
+ strncmp ("ftp://", url, 6) != 0)
effective_url = g_strconcat ("http://", url, NULL);
else
effective_url = g_strdup (url);