From fd6e80a2796505d97775fba4e40a943e59678f2b Mon Sep 17 00:00:00 2001 From: Christoph Lohmann <20h@r-36.net> Date: Wed, 27 Jan 2016 06:44:31 +0100 Subject: [PATCH] Check for about: too. Thanks to Claudio Alessi ! --- surf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surf.c b/surf.c index 108485b..23c49bd 100644 --- a/surf.c +++ b/surf.c @@ -840,7 +840,7 @@ loaduri(Client *c, const Arg *arg) u = g_strdup_printf("file://%s", rp); free(rp); } else { - u = g_strrstr(uri, "://") ? g_strdup(uri) + u = g_strrstr(uri, "://") || g_str_has_prefix(uri, "about:") ? g_strdup(uri) : g_strdup_printf("http://%s", uri); }