1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-26 09:48:45 -05:00

Local source channel: fixed REST API

This commit is contained in:
f4exb 2019-07-03 21:17:05 +02:00
parent 764fc99e40
commit 02642b654a

View File

@ -413,8 +413,8 @@ int LocalSource::webapiSettingsGet(
QString& errorMessage)
{
(void) errorMessage;
response.setLocalSinkSettings(new SWGSDRangel::SWGLocalSinkSettings());
response.getLocalSinkSettings()->init();
response.setLocalSourceSettings(new SWGSDRangel::SWGLocalSourceSettings());
response.getLocalSourceSettings()->init();
webapiFormatChannelSettings(response, m_settings);
return 200;
}