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(); }