From 75db515ffe64d25e0ff0e8ee11a8e9d39e93f6bc Mon Sep 17 00:00:00 2001 From: jvn314 Date: Thu, 23 Apr 2026 11:57:34 +0000 Subject: [PATCH] Adapter settings wrong class fixed --- .../demodmeshtastic/meshtasticdemodwebapiadapter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/channelrx/demodmeshtastic/meshtasticdemodwebapiadapter.cpp b/plugins/channelrx/demodmeshtastic/meshtasticdemodwebapiadapter.cpp index 7f2fd7bf7..cabba8ac0 100644 --- a/plugins/channelrx/demodmeshtastic/meshtasticdemodwebapiadapter.cpp +++ b/plugins/channelrx/demodmeshtastic/meshtasticdemodwebapiadapter.cpp @@ -32,8 +32,8 @@ int MeshtasticDemodWebAPIAdapter::webapiSettingsGet( QString& errorMessage) { (void) errorMessage; - response.setChirpChatDemodSettings(new SWGSDRangel::SWGChirpChatDemodSettings()); - response.getChirpChatDemodSettings()->init(); + response.setMeshtasticDemodSettings(new SWGSDRangel::SWGMeshtasticDemodSettings()); + response.getMeshtasticDemodSettings()->init(); MeshtasticDemod::webapiFormatChannelSettings(response, m_settings); return 200; }