mirror of
https://github.com/samsonjs/media.git
synced 2026-04-13 12:35:48 +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
|
||||
public final void next() {
|
||||
int nextWindowIndex = getPreviousWindowIndex();
|
||||
int nextWindowIndex = getNextWindowIndex();
|
||||
if (nextWindowIndex != C.INDEX_UNSET) {
|
||||
seekToDefaultPosition(nextWindowIndex);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue