Commit 47346c39 by cdrolle Committed by Oliver Woodman

Fixed minor error that occurred when the manifest was updated.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=128472884
parent dae87b66
...@@ -693,7 +693,7 @@ import java.util.ArrayList; ...@@ -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))) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment