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
1 changed files with 4 additions and 2 deletions

View File

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