Remove unnecessary debug output from previous commit
authorAndrej Kacian <ticho@claws-mail.org>
Sun, 28 Apr 2019 21:22:00 +0000 (23:22 +0200)
committerAndrej Kacian <ticho@claws-mail.org>
Sun, 28 Apr 2019 21:22:00 +0000 (23:22 +0200)
src/plugins/rssyl/parse822.c

index 0553de678b9c125f2af8528057412bbe408668e9..e59d282e9f53aee3cc6039641bcfe82f08a69bdd 100644 (file)
@@ -205,15 +205,12 @@ 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(body, lines[i]);
                                } else {
-                                       debug_print("creating new with '%s'\n", lines[i]);
                                        body = g_string_new(lines[i]);
                                }