Skip to content

Commit

Permalink
fix: Fix "playing" never getting set (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
theychx authored and skorokithakis committed Jun 1, 2018
1 parent 56ac940 commit 527fd9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catt/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def __init__(self, state):
self.playing = threading.Event()
if state != "BUFFERING":
self.not_buffering.set()
elif state == "PLAYING":
if state == "PLAYING":
self.playing.set()

def new_media_status(self, status):
Expand Down

0 comments on commit 527fd9c

Please sign in to comment.