Skip to content

Commit

Permalink
Merge pull request #449 from Virczz/virczz_branch
Browse files Browse the repository at this point in the history
Fix: Unable to replay when status is stopped
  • Loading branch information
illia-romanenko authored Jan 29, 2024
2 parents 301bf9a + a876b46 commit 4bb85a9
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 4bb85a9

Please sign in to comment.