talons

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

commit 81379996cd48fdb4115189ed394d470697089dd4
parent ce6fa72069affbe12945f396fba10deec6bd064a
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Sun, 28 Apr 2019 23:22:00 +0200

Remove unnecessary debug output from previous commit

Diffstat:
Msrc/plugins/rssyl/parse822.c | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/plugins/rssyl/parse822.c b/src/plugins/rssyl/parse822.c @@ -205,15 +205,13 @@ FeedItem *rssyl_parse_folder_item_file(gchar *path) if( !strcmp(lines[i], RSSYL_TEXT_END) ) { debug_print("RSSyl: Trailing html tag found at line %d\n", i); past_endhtml_tag = TRUE; - i++; continue; } if (body) { - debug_print("appending '%s'\n", lines[i]); + body = g_string_append_c(body, '\n'); body = g_string_append(body, lines[i]); } else { - debug_print("creating new with '%s'\n", lines[i]); body = g_string_new(lines[i]); }