1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-05-13 21:02:24 -04:00

Adapter settings wrong class fixed

This commit is contained in:
jvn314 2026-04-23 11:57:34 +00:00
parent 8abc4699ff
commit 75db515ffe

View File

@ -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;
}