]> spindle.queued.net Git - midori/commitdiff
Unescape URLs with spaces, not only with %
authorPaweł Forysiuk <tuxator@o2.pl>
Sun, 30 Jan 2011 20:37:06 +0000 (21:37 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sun, 30 Jan 2011 20:37:06 +0000 (21:37 +0100)
midori/sokoke.c

index 0e39ce8df5cfe4f9fb1cbfb210195a1a5fe60dfd..61ff935fe1fd253cfabafb04d9a5301367eebc3a 100644 (file)
@@ -835,7 +835,7 @@ sokoke_magic_uri (const gchar* uri)
 gchar*
 sokoke_uri_unescape_string (const gchar* uri)
 {
-    if (strchr (uri,'%'))
+    if (strchr (uri,'%') || strchr (uri, ' '))
     {
         /* Preserve %20 for pasting URLs into other windows */
         gchar* unescaped = g_uri_unescape_string (uri, "+");