Unescape spaces as well
This commit is contained in:
parent
46c80ad2d1
commit
f7cd519b7f
1 changed files with 1 additions and 1 deletions
|
@ -751,7 +751,7 @@ sokoke_format_uri_for_display (const gchar* uri)
|
||||||
{
|
{
|
||||||
if (uri && g_str_has_prefix (uri, "http://"))
|
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
|
#ifdef HAVE_LIBSOUP_2_27_90
|
||||||
gchar* path = NULL;
|
gchar* path = NULL;
|
||||||
gchar* hostname;
|
gchar* hostname;
|
||||||
|
|
Loading…
Reference in a new issue