Skip to content

Commit

Permalink
is_alive fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ekleop committed Jan 31, 2024
1 parent dd52754 commit 479f75b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v 3.2.1
- is_live fixed

v 3.0
- Kodi v19+ support

Expand Down
2 changes: 1 addition & 1 deletion resources/lib/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def _stop_tracker(self):
if hasattr(self, '_playback_lock'): self._playback_lock.clear()
if not hasattr(self, '_tracker'): return
if self._tracker is None: return
if self._tracker.isAlive(): self._tracker.join()
if self._tracker.is_alive(): self._tracker.join()
self._tracker = None

def _thread_tracker(self):
Expand Down

0 comments on commit 479f75b

Please sign in to comment.