mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 19:57:45 +03:00
- Unread items were not updated correctly when a feed was updated
This commit is contained in:
parent
d72485a955
commit
6e87d6655a
1 changed files with 6 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue