fix mature cutoff in reviews graph
https://forums.ankiweb.net/t/statistics-bugs-after-update-2-1-5-to-2-1-29/1620/4
This commit is contained in:
parent
1353590a92
commit
07594bc375
@ -57,7 +57,7 @@ export function gatherData(data: pb.BackendProto.GraphsOut): GraphData {
|
||||
|
||||
switch (review.reviewKind) {
|
||||
case ReviewKind.REVIEW:
|
||||
if (review.interval < 21) {
|
||||
if (review.lastInterval < 21) {
|
||||
countEntry.young += 1;
|
||||
timeEntry.young += review.takenMillis;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user