We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfd14c6 commit 7a50b6aCopy full SHA for 7a50b6a
ui/widgets/toolbar.py
@@ -32,10 +32,11 @@ def run(self):
32
self.waiting_to_load.emit(True)
33
34
def check_playback_status(self):
35
- if not self.player.is_playing():
+ if not self.player.is_playing() and not self.player.is_stalled():
36
+ print(self.player.get_playback_status())
37
self.timer.stop()
38
self.statusChanged.emit()
- if not (self.player.is_paused() or self.player.is_stalled())and not self.manually_stopped:
39
+ if not self.player.is_paused() and not self.manually_stopped:
40
self.playback_finished.emit()
41
42
def set_audio_url(self, url: str):
0 commit comments