Unescape spaces as well

This commit is contained in:
Alexander Butenko 2010-07-21 23:45:42 -04:00 committed by Christian Dywan
parent 46c80ad2d1
commit f7cd519b7f

View file

@ -751,7 +751,7 @@ sokoke_format_uri_for_display (const gchar* uri)
{
if (uri && g_str_has_prefix (uri, "http://"))
{
gchar* unescaped = g_uri_unescape_string (uri, " +");
gchar* unescaped = g_uri_unescape_string (uri, "+");
#ifdef HAVE_LIBSOUP_2_27_90
gchar* path = NULL;
gchar* hostname;