From cb7e29f7bd65cedc6dd9f3fef6a65680bebb7c62 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sun, 28 Jan 2024 17:19:48 +0100 Subject: [PATCH] don't shut down automatically --- owrx/dsp.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/owrx/dsp.py b/owrx/dsp.py index 84306d6a..625254ea 100644 --- a/owrx/dsp.py +++ b/owrx/dsp.py @@ -772,9 +772,6 @@ class DspManager(SdrSourceEventClient, ClientDemodulatorSecondaryDspEventClient) if self.startOnAvailable: self.chain.setReader(self.sdrSource.getBuffer().getReader()) self.startOnAvailable = False - elif state is SdrSourceState.STOPPING: - logger.debug("received STATE_STOPPING, shutting down DspSource") - self.stop() def onFail(self): logger.debug("received onFail(), shutting down DspSource")