From e175c068af4cd072bf6942e4f632cf93e833c4a8 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 18 Dec 2021 14:26:39 +1000 Subject: [PATCH] fix inverted SchedBuried and UserBuried in cards.ts This wasn't causing any problems, as we only ever checked for both at once. --- ts/lib/cards.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/lib/cards.ts b/ts/lib/cards.ts index 6bc398ea5..d18d69d56 100644 --- a/ts/lib/cards.ts +++ b/ts/lib/cards.ts @@ -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, }