From f69bcbbca0bee45988b06d248d472359c9360218 Mon Sep 17 00:00:00 2001 From: Marat Fayzullin Date: Tue, 11 Oct 2022 20:53:22 -0400 Subject: [PATCH] Allowing failed source to restart without having to restart whole OWRX. --- owrx/source/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/owrx/source/__init__.py b/owrx/source/__init__.py index ae790be..52ad0ec 100644 --- a/owrx/source/__init__.py +++ b/owrx/source/__init__.py @@ -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()