From 18bb954f220d97cf5d26a4a89088b6556b427563 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 04 Nov 2017 18:42:40 -0400 Subject: mq_web_view_normal_scheme_methods.rewrite_uri(): Hide query of about-scheme URIs --- (limited to 'src/web-view-schemes/normal.c') diff --git a/src/web-view-schemes/normal.c b/src/web-view-schemes/normal.c index c4d42b8..f6344f8 100644 --- a/src/web-view-schemes/normal.c +++ b/src/web-view-schemes/normal.c @@ -76,8 +76,16 @@ static gchar * rewrite_uri(MqWebView G_GNUC_UNUSED *web_view, MqWebViewScheme G_GNUC_UNUSED *scheme, const gchar *uri) { + gchar *rw_uri; + gchar *query; + if (g_str_has_prefix(uri, "about:")) { - return g_strconcat("mq-about:", uri + strlen("about:"), NULL); + rw_uri = g_strconcat("mq-about:", uri + strlen("about:"), NULL); + query = strchr(rw_uri, '?'); + if (query) { + query[0] = '\0'; + } + return rw_uri; } else { return g_strdup(uri); } -- cgit v0.9.1