Skip to content

Commit

Permalink
fix(android): onSeek called instantly
Browse files Browse the repository at this point in the history
  • Loading branch information
GyanendroKh committed Feb 13, 2024
1 parent f0a237e commit 13906c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1889,8 +1889,8 @@ public void setVolumeModifier(float volume) {

public void seekTo(long positionMs) {
if (player != null) {
seekTime = positionMs;
player.seekTo(positionMs);
eventEmitter.seek(player.getCurrentPosition(), positionMs);
}
}

Expand Down

0 comments on commit 13906c9

Please sign in to comment.