mirror of
https://github.com/ankitects/anki.git
synced 2026-01-14 06:23:57 -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
ef5f37efef
commit
d5cd9af53b
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