Fix UI not updating when forwarding while paused

This commit is contained in:
ByteHamster 2022-03-22 19:41:54 +01:00
parent 3b47deb705
commit 53a652dc5b
1 changed files with 1 additions and 0 deletions

View File

@ -1664,6 +1664,7 @@ public class PlaybackService extends MediaBrowserServiceCompat {
public void seekTo(final int t) {
mediaPlayer.seekTo(t);
EventBus.getDefault().post(new PlaybackPositionEvent(t, getDuration()));
}
private void seekDelta(final int d) {