diff options
author | Xan Lopez <xan@igalia.com> | 2012-08-07 23:34:50 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-08-07 23:34:50 +0800 |
commit | fcf23c9130758199c6519dbc4e59d49254f4681f (patch) | |
tree | 74fbc5641cf4209c89e68445d568e01f1be0bb89 /embed | |
parent | ec5afea3366a6aed8ba8941fc863d004006eb7d7 (diff) | |
download | gsoc2013-epiphany-fcf23c9130758199c6519dbc4e59d49254f4681f.tar.gz gsoc2013-epiphany-fcf23c9130758199c6519dbc4e59d49254f4681f.tar.zst gsoc2013-epiphany-fcf23c9130758199c6519dbc4e59d49254f4681f.zip |
ephy-web-view: fix URI normalization
Give SoupTLD nothing but the TLD when trying to figure out whether a
URI actually has a TLD, otherwise it won't be happy. In particular:
'.gnome.org' -> Not OK
'.org' -> OK
Add a test for this case.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-web-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 3ee698bc5..d8e5c7a00 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -2833,7 +2833,7 @@ is_public_domain (EphyWebView *view, const char *url) if (g_str_equal (url, "localhost")) return TRUE; - url = g_strstr_len (url, -1, "."); + url = g_strrstr (url, "."); if (!url || *url == '\0') return FALSE; |