mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Show actual due date of learning cards in Card Info (#2865)
This commit is contained in:
parent
820b833a43
commit
344dbe45ed
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ impl Collection {
|
||||||
due.0 += (days_remaining as i64) * 86_400;
|
due.0 += (days_remaining as i64) * 86_400;
|
||||||
Some(due.0)
|
Some(due.0)
|
||||||
} else {
|
} else {
|
||||||
Some(TimestampSecs::now().0)
|
Some(due as i64)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
card.original_position.map(|u| u as i32),
|
card.original_position.map(|u| u as i32),
|
||||||
|
|
Loading…
Reference in a new issue