mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix BasePlayer.next()
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=220470213
This commit is contained in:
parent
6bc0408222
commit
f5c3b30290
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ public abstract class BasePlayer implements Player {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final void next() {
|
public final void next() {
|
||||||
int nextWindowIndex = getPreviousWindowIndex();
|
int nextWindowIndex = getNextWindowIndex();
|
||||||
if (nextWindowIndex != C.INDEX_UNSET) {
|
if (nextWindowIndex != C.INDEX_UNSET) {
|
||||||
seekToDefaultPosition(nextWindowIndex);
|
seekToDefaultPosition(nextWindowIndex);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue