make scheduler respond to config changes
This commit is contained in:
@ -303,6 +303,8 @@ class SdrSource(ABC):
|
||||
return len(clients) > 0
|
||||
|
||||
def addClient(self, c: SdrSourceEventClient):
|
||||
if c in self.clients:
|
||||
return
|
||||
self.clients.append(c)
|
||||
c.onStateChange(self.getState())
|
||||
hasUsers = self.hasClients(SdrClientClass.USER)
|
||||
|
Reference in New Issue
Block a user