From 6787210ce7906afcc93460c7e63c788872fa37a4 Mon Sep 17 00:00:00 2001 From: Andrej Kacian Date: Mon, 29 Apr 2019 01:06:07 +0200 Subject: [PATCH] Fix previous commit The old code added a newline before each line in rssyl_parse_folder_item_file(). --- src/plugins/rssyl/parse822.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/rssyl/parse822.c b/src/plugins/rssyl/parse822.c index e59d282e9..1c89c77c9 100644 --- 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]); -- 2.25.1