2022-04-30 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdcatch(1) where creating a new event
	using the 'Save As' button would fail to send notifications of
	the added event.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-04-30 17:50:16 -04:00
parent c6e90b2bc8
commit 66cdb43a45
2 changed files with 5 additions and 1 deletions

View File

@@ -23011,3 +23011,7 @@
2022-04-30 Fred Gleason <fredg@paravelsystems.com> 2022-04-30 Fred Gleason <fredg@paravelsystems.com>
* Corrected a typo in the Operations Guide for the * Corrected a typo in the Operations Guide for the
'BroadcastTools Universal 4.1MLR>>Web' switcher. 'BroadcastTools Universal 4.1MLR>>Web' switcher.
2022-04-30 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatch(1) where creating a new event
using the 'Save As' button would fail to send notifications of
the added event.

View File

@@ -633,9 +633,9 @@ void MainWidget::editData()
rda->ripc()->sendNotification(*notify); rda->ripc()->sendNotification(*notify);
delete notify; delete notify;
catch_recordings_model->refresh(rows.first()); catch_recordings_model->refresh(rows.first());
nextEventData();
} }
ProcessNewRecords(&new_events); ProcessNewRecords(&new_events);
nextEventData();
} }