Made sure that statusBeforeSeeking does not become SEEKING
This commit is contained in:
parent
4bd3aec642
commit
56d29bd44c
|
@ -752,7 +752,9 @@ public class PlaybackService extends Service {
|
|||
if (AppConfig.DEBUG)
|
||||
Log.d(TAG, "Seeking position " + i);
|
||||
if (shouldStream) {
|
||||
statusBeforeSeek = status;
|
||||
if (status != PlayerStatus.SEEKING) {
|
||||
statusBeforeSeek = status;
|
||||
}
|
||||
setStatus(PlayerStatus.SEEKING);
|
||||
}
|
||||
player.seekTo(i);
|
||||
|
|
Loading…
Reference in New Issue