Mercurial > pidgin
diff src/protocols/msn/notification.c @ 5652:4fa26acb4cd3
[gaim-migrate @ 6066]
A little fix from shx. Now users shouldn't be seeing "%20" instead of " "
in some friendly names.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Mon, 02 Jun 2003 06:02:34 +0000 |
| parents | cc9ddec20010 |
| children | 331295fb349e |
line wrap: on
line diff
--- a/src/protocols/msn/notification.c Mon Jun 02 05:33:06 2003 +0000 +++ b/src/protocols/msn/notification.c Mon Jun 02 06:02:34 2003 +0000 @@ -280,7 +280,7 @@ /* We're either getting the challenge or the OK. Let's find out. */ if (!g_ascii_strcasecmp(params[1], "OK")) { - const char *friendly = params[3]; + const char *friendly = msn_url_decode(params[3]); /* OK */
