Skip to content

Commit

Permalink
Fix Dackka error due to param name mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
icbaker authored and tianyif committed Dec 21, 2022
1 parent 844428e commit d2a3d8f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ public void pause() {
}

@Override
public void seekTo(long positionMs) {
player.seekTo(player.getCurrentMediaItemIndex(), positionMs);
public void seekTo(long positionInMs) {
player.seekTo(player.getCurrentMediaItemIndex(), positionInMs);
}

@Override
Expand Down

0 comments on commit d2a3d8f

Please sign in to comment.