Fix bug that caused checkmarks not to update sometimes

pull/145/head
Alinson S. Xavier 9 years ago
parent 6b23858136
commit 16dc9c25d2

@ -157,8 +157,7 @@ public class CheckmarkList
final long day = DateUtils.millisecondsInOneDay;
Checkmark newestCheckmark = findNewest();
if(newestCheckmark != null)
from = Math.max(from, newestCheckmark.timestamp + day);
if(newestCheckmark != null) from = newestCheckmark.timestamp + day;
if(from > to) return;

Loading…
Cancel
Save