Merge pull request #5809 from ByteHamster/fix-seek-ui

Fix UI not updating when forwarding while paused
This commit is contained in:
ByteHamster 2022-03-25 22:22:13 +01:00 committed by GitHub
commit e483f2edde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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) {