mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fixed minor error that occurred when the manifest was updated.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=128472884
This commit is contained in:
parent
dae87b66dd
commit
47346c39c1
1 changed files with 1 additions and 1 deletions
|
|
@ -693,7 +693,7 @@ import java.util.ArrayList;
|
||||||
|
|
||||||
Period previousPeriod = playingPeriod;
|
Period previousPeriod = playingPeriod;
|
||||||
boolean seenReadingPeriod = false;
|
boolean seenReadingPeriod = false;
|
||||||
while (previousPeriod != null) {
|
while (previousPeriod.nextPeriod != null) {
|
||||||
Period period = previousPeriod.nextPeriod;
|
Period period = previousPeriod.nextPeriod;
|
||||||
index++;
|
index++;
|
||||||
if (!period.id.equals(timeline.getPeriodId(index))) {
|
if (!period.id.equals(timeline.getPeriodId(index))) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue