mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Fix possible crash when adding a new RSS stream
This commit is contained in:
@@ -184,7 +184,7 @@ void RSSImp::on_newFeedButton_clicked() {
|
||||
if (parent_item == m_feedList->stickyUnreadItem()) {
|
||||
parent_item = 0;
|
||||
} else {
|
||||
if (m_feedList->isFolder(parent_item))
|
||||
if (!m_feedList->isFolder(parent_item))
|
||||
parent_item = parent_item->parent();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user