From 59f32ccb3a1f192c9faf8f51330db918c4ee3d46 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Sun, 7 Oct 2012 03:00:52 +0200 Subject: Fix URL detection --- src/fe-gtk/fe-gtk.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/fe-gtk/fe-gtk.c') diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c index ad401bca..29748f0b 100644 --- a/src/fe-gtk/fe-gtk.c +++ b/src/fe-gtk/fe-gtk.c @@ -1080,16 +1080,18 @@ fe_open_url_inner (const char *url) static void fe_open_url_locale (const char *url) { -#ifndef WIN32 - if (url[0] != '/' && strchr (url, ':') == NULL) + /* the http:// part's missing, prepend it, otherwise it won't always work */ + if (strchr (url, ':') == NULL) { url = g_strdup_printf ("http://%s", url); fe_open_url_inner (url); g_free ((char *)url); - return; } -#endif - fe_open_url_inner (url); + /* we have a sane URL, send it to the browser untouched */ + else + { + fe_open_url_inner (url); + } } void -- cgit 1.4.1