aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXan Lopez <xan@igalia.com>2013-03-13 02:57:59 +0800
committerXan Lopez <xan@igalia.com>2013-03-13 03:51:23 +0800
commit61ae374aa94759a98b7b6f22909207269ea57486 (patch)
tree551805b00cd3bac1f651180fb966ca3f136ab9bf
parentfb1168182e81dfc295fd9927805f1e5038d8b49c (diff)
downloadgsoc2013-epiphany-61ae374aa94759a98b7b6f22909207269ea57486.tar
gsoc2013-epiphany-61ae374aa94759a98b7b6f22909207269ea57486.tar.gz
gsoc2013-epiphany-61ae374aa94759a98b7b6f22909207269ea57486.tar.bz2
gsoc2013-epiphany-61ae374aa94759a98b7b6f22909207269ea57486.tar.lz
gsoc2013-epiphany-61ae374aa94759a98b7b6f22909207269ea57486.tar.xz
gsoc2013-epiphany-61ae374aa94759a98b7b6f22909207269ea57486.tar.zst
gsoc2013-epiphany-61ae374aa94759a98b7b6f22909207269ea57486.zip
ephy-form-auth-data: remove query section from URIs
We do not want the query to be relevant when loading/storing auth data. Patch by Carlos GarcĂ­a Campos <cgarcia@igalia.com>
-rw-r--r--lib/ephy-form-auth-data.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ephy-form-auth-data.c b/lib/ephy-form-auth-data.c
index ea0580247..ecdc50d8f 100644
--- a/lib/ephy-form-auth-data.c
+++ b/lib/ephy-form-auth-data.c
@@ -54,6 +54,7 @@ normalize_and_prepare_uri (SoupURI *uri)
if (uri->scheme == SOUP_URI_SCHEME_HTTPS)
soup_uri_set_scheme (uri, SOUP_URI_SCHEME_HTTP);
+ soup_uri_set_query (uri, NULL);
soup_uri_set_path (uri, "/");
}