talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit ac570c228d0e109898df95c2e5104424aed9c5a9
parent fc0abbcade165c5044e033830c5c0f0b77a650c2
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Fri, 18 Dec 2015 16:25:38 +0100

RSSyl: do not add extra dir separator in item_get_path().

Diffstat:
Msrc/plugins/rssyl/rssyl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/rssyl/rssyl.c b/src/plugins/rssyl/rssyl.c @@ -530,7 +530,7 @@ static gchar *rssyl_item_get_path(Folder *folder, FolderItem *item) name = folder_item_get_name(rssyl_get_root_folderitem(item)); path = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, RSSYL_DIR, - G_DIR_SEPARATOR_S, name, G_DIR_SEPARATOR_S, item->path, NULL); + G_DIR_SEPARATOR_S, name, item->path, NULL); g_free(name); return path;