From 6ce08e85c12897806f0bbe0670994721ee588241 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 04 Nov 2017 21:43:23 -0400 Subject: Revert "mq_web_view_normal_scheme_methods.rewrite_uri(): Hide query of about-scheme URIs" This reverts commit 18bb954f220d97cf5d26a4a89088b6556b427563. Wrong method, but nothing broke. --- (limited to 'src') diff --git a/src/web-view-schemes/normal.c b/src/web-view-schemes/normal.c index f6344f8..c4d42b8 100644 --- a/src/web-view-schemes/normal.c +++ b/src/web-view-schemes/normal.c @@ -76,16 +76,8 @@ 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:")) { - rw_uri = g_strconcat("mq-about:", uri + strlen("about:"), NULL); - query = strchr(rw_uri, '?'); - if (query) { - query[0] = '\0'; - } - return rw_uri; + return g_strconcat("mq-about:", uri + strlen("about:"), NULL); } else { return g_strdup(uri); } -- cgit v0.9.1