Fix bug that caused checkmarks not to update sometimes
This commit is contained in:
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…
Reference in New Issue
Block a user