diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | browser.c | 12 |
2 files changed, 12 insertions, 2 deletions
@@ -9,6 +9,8 @@ next [Added] - An external user-supplied program can be called for the current URI or for hyperlinks/images/videos/audio files. + - Lariza will now automatically add a "file://" prefix for local + files. v16.12 2016-12-24 [Fixed] @@ -1,3 +1,4 @@ +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <sys/types.h> @@ -501,7 +502,7 @@ downloadmanager_setup(void) gchar * ensure_uri_scheme(const gchar *t) { - gchar *f; + gchar *f, *fabs; f = g_ascii_strdown(t, -1); if (!g_str_has_prefix(f, "http:") && @@ -510,7 +511,14 @@ ensure_uri_scheme(const gchar *t) !g_str_has_prefix(f, "about:")) { g_free(f); - f = g_strdup_printf("http://%s", t); + fabs = realpath(t, NULL); + if (fabs != NULL) + { + f = g_strdup_printf("file://%s", fabs); + free(fabs); + } + else + f = g_strdup_printf("http://%s", t); return f; } else |