summaryrefslogtreecommitdiffstats
path: root/src/web-view-schemes/normal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/web-view-schemes/normal.c')
-rw-r--r--src/web-view-schemes/normal.c10
1 files changed, 9 insertions, 1 deletions
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);
}