mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-04 14:08:38 +00:00
make scheduler respond to config changes
This commit is contained in:
parent
d8b3974728
commit
91c4d6f568
3 changed files with 19 additions and 9 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue