From 66cdb43a4523d8e3c82b5b925e062e5f3618c200 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Sat, 30 Apr 2022 17:50:16 -0400 Subject: [PATCH] 2022-04-30 Fred Gleason * 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 --- ChangeLog | 4 ++++ rdcatch/rdcatch.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 47a58083..2a5bac1d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23011,3 +23011,7 @@ 2022-04-30 Fred Gleason * Corrected a typo in the Operations Guide for the 'BroadcastTools Universal 4.1MLR>>Web' switcher. +2022-04-30 Fred Gleason + * 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. diff --git a/rdcatch/rdcatch.cpp b/rdcatch/rdcatch.cpp index 2f29d647..e8833442 100644 --- a/rdcatch/rdcatch.cpp +++ b/rdcatch/rdcatch.cpp @@ -633,9 +633,9 @@ void MainWidget::editData() rda->ripc()->sendNotification(*notify); delete notify; catch_recordings_model->refresh(rows.first()); - nextEventData(); } ProcessNewRecords(&new_events); + nextEventData(); }