aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r--mail/mail-ops.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 5c536d2adc..b8cd1309f7 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -1017,7 +1017,10 @@ add_vtrash_info (CamelStore *store, CamelFolderInfo *info)
/* create our vTrash URL */
url = camel_url_new (info->url, NULL);
path = g_strdup_printf ("/%s", CAMEL_VTRASH_NAME);
- camel_url_set_path (url, path);
+ if (url->fragment)
+ camel_url_set_fragment (url, path);
+ else
+ camel_url_set_path (url, path);
g_free (path);
uri = camel_url_to_string (url, CAMEL_URL_HIDE_ALL);
camel_url_free (url);