mirror of
https://github.com/ankitects/anki.git
synced 2025-11-10 06:37:12 -05:00
fix review cards with high intervals not being reset properly
would lead to a "fixed .. with invalid card property" message that didn't go away
This commit is contained in:
parent
f44597bb3a
commit
816cec4a58
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ impl super::SqliteStorage {
|
|||
let mut other_cnt = self
|
||||
.db
|
||||
.prepare(include_str!("fix_due_other.sql"))?
|
||||
.execute(params![mtime, usn, today])?;
|
||||
.execute(params![today, mtime, usn])?;
|
||||
other_cnt += self
|
||||
.db
|
||||
.prepare(include_str!("fix_odue.sql"))?
|
||||
|
|
|
|||
Loading…
Reference in a new issue