talons

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

commit 814f1179a1e5c8f3effd3f4bbfc1c36c16f6a894
parent b223e5d4e8b32132e44ee9f0723128febc9b9d93
Author: Andrej Kacian <ticho@claws-mail.org>
Date:   Mon, 26 Aug 2019 17:42:52 +0200

Fix comparison for RSS feed items without text

Diffstat:
Msrc/plugins/rssyl/rssyl_add_item.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/plugins/rssyl/rssyl_add_item.c b/src/plugins/rssyl/rssyl_add_item.c @@ -361,6 +361,10 @@ void rssyl_add_item(RFolderItem *ritem, FeedItem *feed_item) feed_item->summary = NULL; } + /* If there is still no text, use an empty string for consistency. */ + if( feed_item_get_text(feed_item) == NULL ) + feed_item_set_text(feed_item, ""); + /* Do not add if the item already exists, update if it does exist, but * has changed. */ dif = rssyl_feed_item_exists(ritem, feed_item, &old_item);