mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-12-01 12:31:45 +00:00
Only seek to last position if status is not paused
This commit is contained in:
@ -676,7 +676,9 @@ public class PlaybackService extends Service {
|
||||
editor.commit();
|
||||
|
||||
player.start();
|
||||
player.seekTo((int) media.getPosition());
|
||||
if (status != PlayerStatus.PAUSED) {
|
||||
player.seekTo((int) media.getPosition());
|
||||
}
|
||||
setStatus(PlayerStatus.PLAYING);
|
||||
setupPositionSaver();
|
||||
setupWidgetUpdater();
|
||||
|
||||
Reference in New Issue
Block a user