Fix bug that caused checkmarks not to update sometimes

This commit is contained in:
2016-05-27 14:06:55 -04:00
parent 6b23858136
commit 16dc9c25d2

View File

@@ -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;