mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -06:00
- Unread items were not updated correctly when a feed was updated
This commit is contained in:
@@ -510,8 +510,13 @@ void RSSImp::updateFeedInfos(QString url, QString aliasOrUrl, unsigned int nbUnr
|
||||
// Update Unread item
|
||||
updateItemInfos(listStreams->getUnreadItem());
|
||||
// If the feed is selected, update the displayed news
|
||||
if(listStreams->currentItem() == item || listStreams->currentItem() == listStreams->getUnreadItem()){
|
||||
if(listStreams->currentItem() == item ){
|
||||
refreshNewsList(item);
|
||||
} else {
|
||||
// Update unread items
|
||||
if(listStreams->currentItem() == listStreams->getUnreadItem()) {
|
||||
refreshNewsList(listStreams->getUnreadItem());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user