diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-09 10:11:09 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:11 +0800 |
commit | b325cf8977a24a91f7635443cd6d0a6b517a3205 (patch) | |
tree | c254310e538798ede688dd2ebdedb9d1e2408d9a | |
parent | 41b68582b610a0fbdaec02c9cc056dbf322fd91c (diff) | |
download | gsoc2013-evolution-b325cf8977a24a91f7635443cd6d0a6b517a3205.tar gsoc2013-evolution-b325cf8977a24a91f7635443cd6d0a6b517a3205.tar.gz gsoc2013-evolution-b325cf8977a24a91f7635443cd6d0a6b517a3205.tar.bz2 gsoc2013-evolution-b325cf8977a24a91f7635443cd6d0a6b517a3205.tar.lz gsoc2013-evolution-b325cf8977a24a91f7635443cd6d0a6b517a3205.tar.xz gsoc2013-evolution-b325cf8977a24a91f7635443cd6d0a6b517a3205.tar.zst gsoc2013-evolution-b325cf8977a24a91f7635443cd6d0a6b517a3205.zip |
"email://" URIs have encoded paths too.
-rw-r--r-- | mail/e-mail-folder-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/e-mail-folder-utils.c b/mail/e-mail-folder-utils.c index d73f13ad5c..6332e9c1ae 100644 --- a/mail/e-mail-folder-utils.c +++ b/mail/e-mail-folder-utils.c @@ -299,7 +299,7 @@ e_mail_folder_uri_parse (CamelSession *session, } if (url->path != NULL && *url->path == '/') - folder_name = g_strdup (url->path + 1); + folder_name = camel_url_decode_path (url->path + 1); /* CamelFolderInfo URIs used to embed the store's URI, so the * folder name is appended as either a path part or a fragment |