diff --git a/owrx/source/rtl_tcp.py b/owrx/source/rtl_tcp.py index 3daec3fa..59047bda 100644 --- a/owrx/source/rtl_tcp.py +++ b/owrx/source/rtl_tcp.py @@ -26,4 +26,4 @@ class RtlTcpDeviceDescription(ConnectorDeviceDescription): return super().getInputs() + [RemoteInput()] def getDeviceMandatoryKeys(self): - return super().getDeviceMandatoryKeys() + ["device"] + return super().getDeviceMandatoryKeys() + ["remote"] diff --git a/owrx/source/soapy_remote.py b/owrx/source/soapy_remote.py index c3ed1747..7abe1e40 100644 --- a/owrx/source/soapy_remote.py +++ b/owrx/source/soapy_remote.py @@ -29,5 +29,8 @@ class SoapyRemoteDeviceDescription(SoapyConnectorDeviceDescription): ), ] + def getDeviceMandatoryKeys(self): + return super().getDeviceMandatoryKeys() + ["remote"] + def getDeviceOptionalKeys(self): return super().getDeviceOptionalKeys() + ["remote_driver"]