1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

Added missing plugin for fixing #842

This commit is contained in:
f4exb 2021-04-17 18:15:03 +02:00
parent 76f09a17a7
commit 0626eb17f7

View File

@ -33,8 +33,8 @@ int HackRFInputWebAPIAdapter::webapiSettingsGet(
QString& errorMessage)
{
(void) errorMessage;
response.setAirspyHfSettings(new SWGSDRangel::SWGAirspyHFSettings());
response.getAirspyHfSettings()->init();
response.setHackRfInputSettings(new SWGSDRangel::SWGHackRFInputSettings());
response.getHackRfInputSettings()->init();
HackRFInput::webapiFormatDeviceSettings(response, m_settings);
return 200;
}