mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-20 22:05:13 +00:00
actually, it's better to catch the exception inside
This commit is contained in:
parent
981d3b6673
commit
a6a29b7032
1 changed files with 4 additions and 4 deletions
|
|
@ -264,11 +264,11 @@ class OpenWebRxReceiverClient(Client):
|
|||
stack.addLayer(0, self.sdr.getProps())
|
||||
stack.addLayer(1, config)
|
||||
protected = stack.filter(*keys)
|
||||
try:
|
||||
for key, value in params.items():
|
||||
for key, value in params.items():
|
||||
try:
|
||||
protected[key] = value
|
||||
except KeyError:
|
||||
pass
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
def getDsp(self):
|
||||
if self.dsp is None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue