Skip to content

Commit d6e5afd

Browse files
Fixed a bug related to ignore the playing ayah while stalling.
1 parent 8a2e485 commit d6e5afd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/widgets/toolbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def check_playback_status(self):
3535
if not self.player.is_playing():
3636
self.timer.stop()
3737
self.statusChanged.emit()
38-
if not self.player.is_paused() and not self.manually_stopped:
38+
if not (self.player.is_paused() or self.player.is_stalled())and not self.manually_stopped:
3939
self.playback_finished.emit()
4040

4141
def set_audio_url(self, url: str):

0 commit comments

Comments
 (0)