diff options
Diffstat (limited to 'mail/upgrade-mailer.c')
-rw-r--r-- | mail/upgrade-mailer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/upgrade-mailer.c b/mail/upgrade-mailer.c index ff87eb11c5..7f62e654e5 100644 --- a/mail/upgrade-mailer.c +++ b/mail/upgrade-mailer.c @@ -616,7 +616,8 @@ shortcuts_upgrade_uri (GHashTable *accounts, GHashTable *imap_sources, const cha g_free (url); if (new) { - name = g_strdup (new + strlen (si->base_url) + 1); + name = new + strlen (si->base_url) + 1; + name = hex_decode (name, strlen (name)); g_free (new); return name; |