Skip to content

Commit

Permalink
Fix: Unable to replay when status is stopped
Browse files Browse the repository at this point in the history
  • Loading branch information
Virczz committed Nov 7, 2023
1 parent eb8ff33 commit a876b46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ void pause() {
}

void stop() {
if (mediaPlayer != null && mediaPlayer.isPlaying()) {
if (mediaPlayer != null) {
mediaPlayer.stop();
}
}
Expand Down

0 comments on commit a876b46

Please sign in to comment.