mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2026-04-06 23:43:30 +00:00
fix regression in observable thread.
patch bump
This commit is contained in:
@@ -21,7 +21,7 @@ class Remote(CBindings):
|
||||
self.cache = {}
|
||||
self.subject = Subject()
|
||||
self.strip_mode = 0
|
||||
self.running = True
|
||||
self.running = None
|
||||
|
||||
for attr, val in kwargs.items():
|
||||
setattr(self, attr, val)
|
||||
@@ -39,6 +39,7 @@ class Remote(CBindings):
|
||||
|
||||
def init_thread(self):
|
||||
"""Starts updates thread."""
|
||||
self.running = True
|
||||
t = Thread(target=self._updates, daemon=True)
|
||||
t.start()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user