mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
fix inverted SchedBuried and UserBuried in cards.ts
This wasn't causing any problems, as we only ever checked for both at once.
This commit is contained in:
parent
3e0c9dc866
commit
e175c068af
1 changed files with 2 additions and 2 deletions
|
@ -21,6 +21,6 @@ export enum CardQueue {
|
|||
PreviewRepeat = 4,
|
||||
/// cards are not due in these states
|
||||
Suspended = -1,
|
||||
UserBuried = -2,
|
||||
SchedBuried = -3,
|
||||
SchedBuried = -2,
|
||||
UserBuried = -3,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue