Fix typo causing RX radio device to remain open. (#918)

* Fix typo causing RX radio device to remain open.

* Add PR #918 to changelog.
pull/919/head
Mooneer Salem 2025-06-06 23:00:15 -07:00 committed by GitHub
parent 1ef4c95128
commit dc9a693524
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -798,6 +798,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
* FreeDV Reporter: Force explicit background color (avoids unwanted mouseover highlights on Linux). (PR #911)
* Fix compiler errors when using wxWidgets 3.0. (PR #914)
* Unit tests: Increase sleep time before killing recording to resolve macOS test failures. (PR #917)
* Fix typo causing RX radio device to remain open. (PR #918)
## V2.0.0 June 2025

View File

@ -2500,7 +2500,7 @@ void MainFrame::stopRxStream()
rxOutSoundDevice.reset();
}
delete m_txThread;
delete m_rxThread;
m_rxThread = nullptr;
}