Skip to content

Commit

Permalink
fix: false check of playback interrupted
Browse files Browse the repository at this point in the history
  • Loading branch information
MSOB7YY committed Sep 26, 2024
1 parent 2ef6cd7 commit 8d598a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/base/audio_handler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ class NamidaAudioVideoHandler<Q extends Playable> extends BasicAudioHandler<Q> {

Duration? duration;
bool checkInterrupted() {
if (item.track != currentItem.value) {
if (item != currentItem.value) {
return true;
} else {
if (duration != null) _currentItemDuration.value = duration;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: namida
description: A Beautiful and Feature-rich Music Player, With YouTube & Video Support Built in Flutter
publish_to: "none"
version: 4.4.6-beta+240923004
version: 4.4.71-beta+240926210

environment:
sdk: ">=3.4.0 <4.0.0"
Expand Down

0 comments on commit 8d598a3

Please sign in to comment.