Skip to content

Commit

Permalink
Restore sending of message to server on connect.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Dec 19, 2023
1 parent 16b8828 commit f18e28e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/freedv_reporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,8 @@ void FreeDVReporterDialog::setReporter(std::shared_ptr<FreeDVReporter> reporter)
reporter_->setMessageUpdateFn(std::bind(&FreeDVReporterDialog::onMessageUpdateFn_, this, _1, _2, _3));

// Update status message
m_statusMessage->SetValue(wxGetApp().appConfiguration.reportingConfiguration.freedvReporterStatusText);
auto statusMsg = m_statusMessage->GetValue();
reporter_->updateMessage(statusMsg.ToStdString());
}
else
{
Expand Down

0 comments on commit f18e28e

Please sign in to comment.