diff options
author | Xan Lopez <xan@gnome.org> | 2009-05-31 01:50:38 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-05-31 01:51:05 +0800 |
commit | f25dc37fd237c7c211130e47a9bf5a243c6a5c5e (patch) | |
tree | ac7fc9b02455d03f354b1093c13cbdc346a827e8 /embed | |
parent | a91b20c897807e39c3e05bd5f49b8bba03bd2e70 (diff) | |
download | gsoc2013-epiphany-f25dc37fd237c7c211130e47a9bf5a243c6a5c5e.tar gsoc2013-epiphany-f25dc37fd237c7c211130e47a9bf5a243c6a5c5e.tar.gz gsoc2013-epiphany-f25dc37fd237c7c211130e47a9bf5a243c6a5c5e.tar.bz2 gsoc2013-epiphany-f25dc37fd237c7c211130e47a9bf5a243c6a5c5e.tar.lz gsoc2013-epiphany-f25dc37fd237c7c211130e47a9bf5a243c6a5c5e.tar.xz gsoc2013-epiphany-f25dc37fd237c7c211130e47a9bf5a243c6a5c5e.tar.zst gsoc2013-epiphany-f25dc37fd237c7c211130e47a9bf5a243c6a5c5e.zip |
webkit-embed.c: we still do need to update loading_uri here.
Fell through the cracks when moving the normalization higher on the
stack.
Diffstat (limited to 'embed')
-rw-r--r-- | embed/webkit/webkit-embed.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embed/webkit/webkit-embed.c b/embed/webkit/webkit-embed.c index ddb69dc8b..f98e6037d 100644 --- a/embed/webkit/webkit-embed.c +++ b/embed/webkit/webkit-embed.c @@ -785,6 +785,9 @@ impl_load_url (EphyEmbed *embed, { WebKitEmbed *wembed = WEBKIT_EMBED (embed); + g_free (wembed->priv->loading_uri); + wembed->priv->loading_uri = g_strdup (url); + webkit_web_view_open (wembed->priv->web_view, url); } |