From b7fc6a9c87eac55c63762488237b599343a0dbc9 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Tue, 4 Jun 2019 00:39:22 +0200 Subject: [PATCH] connection handling fix --- owrx/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/owrx/connection.py b/owrx/connection.py index abd61ab..67ee96b 100644 --- a/owrx/connection.py +++ b/owrx/connection.py @@ -15,12 +15,12 @@ class OpenWebRxClient(object): def __init__(self, conn): self.conn = conn - ClientRegistry.getSharedInstance().addClient(self) - self.dsp = None self.sdr = None self.configSub = None + ClientRegistry.getSharedInstance().addClient(self) + pm = PropertyManager.getSharedInstance() self.setSdr()