Skip to content

Commit 4bb85a9

Browse files
Merge pull request #449 from Virczz/virczz_branch
Fix: Unable to replay when status is stopped
2 parents 301bf9a + a876b46 commit 4bb85a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flutter_vlc_player/android/src/main/java/software/solid/fluttervlcplayer/FlutterVlcPlayer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ void pause() {
255255
}
256256

257257
void stop() {
258-
if (mediaPlayer != null && mediaPlayer.isPlaying()) {
258+
if (mediaPlayer != null) {
259259
mediaPlayer.stop();
260260
}
261261
}

0 commit comments

Comments
 (0)