commit 6787210ce7906afcc93460c7e63c788872fa37a4
parent 24c3e4c3f5d8af1139dc0dac55eee907dd0a72c6
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Mon, 29 Apr 2019 01:06:07 +0200
Fix previous commit
The old code added a newline before each line in
rssyl_parse_folder_item_file().
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/plugins/rssyl/parse822.c b/src/plugins/rssyl/parse822.c
@@ -209,6 +209,7 @@ FeedItem *rssyl_parse_folder_item_file(gchar *path)
}
if (body) {
+ body = g_string_append_c(body, '\n');
body = g_string_append(body, lines[i]);
} else {
body = g_string_new(lines[i]);