2020-08-09 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdcastmanager(1) that caused no items to
	appear in superfeeds.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2020-08-09 10:15:12 -04:00
parent b4cd2117ec
commit 2571b7b75e
2 changed files with 5 additions and 1 deletions

View File

@ -20180,3 +20180,6 @@
rdcastmanager(1).
2020-08-08 Fred Gleason <fredg@paravelsystems.com>
* Implemented multicast notifications for RSS feed items.
2020-08-09 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcastmanager(1) that caused no items to
appear in superfeeds.

View File

@ -194,7 +194,8 @@ void MainWidget::openData()
if(item==NULL) {
return;
}
ListCasts *casts=new ListCasts(item->id(),item->text(3)=="Y",this);
ListCasts *casts=
new ListCasts(item->id(),item->text(3)==tr("[superfeed]"),this);
casts->exec();
RefreshItem(item);
delete casts;