From f148cc05fc08d799655d685d917f015a60ec701d Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Sat, 28 Mar 2026 07:10:07 +0100 Subject: [PATCH] [fix](trx-frontend-http): handle NoaaImage in snapshot and decode match - Add noaa_decode_enabled to the fallback RigSnapshot initializer in api.rs - Add NoaaImage arm (no-op) to the DecodedMessage match in audio.rs Co-Authored-By: Claude Sonnet 4.6 Signed-off-by: Stan Grams --- src/trx-client/trx-frontend/trx-frontend-http/src/api.rs | 1 + src/trx-client/trx-frontend/trx-frontend-http/src/audio.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/trx-client/trx-frontend/trx-frontend-http/src/api.rs b/src/trx-client/trx-frontend/trx-frontend-http/src/api.rs index c67344c..b5b30e7 100644 --- a/src/trx-client/trx-frontend/trx-frontend-http/src/api.rs +++ b/src/trx-client/trx-frontend/trx-frontend-http/src/api.rs @@ -2485,6 +2485,7 @@ async fn wait_for_view(mut rx: watch::Receiver) -> Result) { DecodedMessage::Ft4(msg) => record_ft4(&context, msg), DecodedMessage::Ft2(msg) => record_ft2(&context, msg), DecodedMessage::Wspr(msg) => record_wspr(&context, msg), + DecodedMessage::NoaaImage(_) => {} }, Err(broadcast::error::RecvError::Lagged(_)) => continue, Err(broadcast::error::RecvError::Closed) => break,