This is a fix to liferea to correctly display updated items for a feed when an update occurs automatically or is initiated and the feed folder is being displayed. Without this, updated items will still be shown as read. One needed to navigate away from the feed folder and back again for the list to be updated correctly. Note liferea determines an item is updated iff the title or description have changed. It ignores changes in pubDate of RSS 2.0 feeds, which seems strange. IMHO: if old_item.guid == new_item.guid if item.pubDate != feed.pubDate if old_item.pubDate == new_item.pubDate update(old_item); diff -Naur liferea-1.0.14/src/itemlist.c liferea-1.0.14-pb/src/itemlist.c --- liferea-1.0.14/src/itemlist.c 2006-05-03 20:27:48.000000000 +0000 +++ liferea-1.0.14-pb/src/itemlist.c 2006-06-09 17:30:56.000000000 +0000 @@ -130,6 +130,7 @@ if(node != displayed_node) return; itemlist_load_feed((feedPtr)node, (gpointer)TRUE); + ui_itemlist_update(); ui_itemlist_display(); } }