mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 17:23:07 -07:00
- Fix a crash introduced by last commit
This commit is contained in:
parent
e780d83fd0
commit
9d35bda43c
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ void RSSImp::refreshNewsList(QTreeWidgetItem* item) {
|
||||||
|
|
||||||
// display a news
|
// display a news
|
||||||
void RSSImp::refreshTextBrowser(QTreeWidgetItem *item) {
|
void RSSImp::refreshTextBrowser(QTreeWidgetItem *item) {
|
||||||
if(!item) return;
|
if(!item || item == previous_news) return;
|
||||||
// Stop displaying previous news if necessary
|
// Stop displaying previous news if necessary
|
||||||
if(listStreams->currentFeed() == listStreams->getUnreadItem()) {
|
if(listStreams->currentFeed() == listStreams->getUnreadItem()) {
|
||||||
if(previous_news) {
|
if(previous_news) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue