Allowing failed source to restart without having to restart whole OWRX.

This commit is contained in:
Marat Fayzullin 2022-10-11 20:53:22 -04:00
parent 5cd0847362
commit f69bcbbca0

View File

@ -274,8 +274,10 @@ class SdrSource(ABC):
if self.monitor: if self.monitor:
return return
if self.isFailed(): # allow failed sdr source to restart, without having to
return # restart entire OpenWebRX
#if self.isFailed():
# return
try: try:
self.preStart() self.preStart()