mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -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,
|
PreviewRepeat = 4,
|
||||||
/// cards are not due in these states
|
/// cards are not due in these states
|
||||||
Suspended = -1,
|
Suspended = -1,
|
||||||
UserBuried = -2,
|
SchedBuried = -2,
|
||||||
SchedBuried = -3,
|
UserBuried = -3,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue