mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-02-17 21:04:14 +01:00
ignore keyerrors in this case
This commit is contained in:
parent
8e313517d1
commit
981d3b6673
|
|
@ -264,8 +264,11 @@ class OpenWebRxReceiverClient(Client):
|
|||
stack.addLayer(0, self.sdr.getProps())
|
||||
stack.addLayer(1, config)
|
||||
protected = stack.filter(*keys)
|
||||
for key, value in params.items():
|
||||
protected[key] = value
|
||||
try:
|
||||
for key, value in params.items():
|
||||
protected[key] = value
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
def getDsp(self):
|
||||
if self.dsp is None:
|
||||
|
|
|
|||
Loading…
Reference in a new issue