From 7cc9762041386ec30d5ada81da1177aef058c7ba Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Tue, 11 May 2021 17:02:41 -0400 Subject: [PATCH] 2021-05-11 Fred Gleason * Fixed a regression in rdcastmanager(1) that caused values in the 'Superfeed' column of the Feed List to be inverted. Signed-off-by: Fred Gleason --- ChangeLog | 3 +++ lib/rdfeedlistmodel.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f214303d..71f66eff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21675,3 +21675,6 @@ 2021-05-11 Fred Gleason * Fixed a bug in 'RDCutDialog' that allowed a cart entry to be selected. +2021-05-11 Fred Gleason + * Fixed a regression in rdcastmanager(1) that caused values in the + 'Superfeed' column of the Feed List to be inverted. diff --git a/lib/rdfeedlistmodel.cpp b/lib/rdfeedlistmodel.cpp index cc4b3310..f69d45d6 100644 --- a/lib/rdfeedlistmodel.cpp +++ b/lib/rdfeedlistmodel.cpp @@ -605,7 +605,7 @@ void RDFeedListModel::updateRow(int row,RDSqlQuery *q) } while(q->next()&&(q->value(1).toString()==keyname)); q->previous(); - if(q->value(3).toString()=="Y") { + if(q->value(4).toString()=="Y") { d_texts[row][2]=tr("[superfeed]"); } else {