From bf4ba7191e5e063d3e7a122d0ffe8df92baa88b0 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Sat, 6 Jan 2024 17:07:56 +0800 Subject: [PATCH] :art: Cards expired no longer appear in the same review round https://github.com/siyuan-note/siyuan/issues/10087 --- kernel/model/flashcard.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/model/flashcard.go b/kernel/model/flashcard.go index b7e7ba9fad3..2209544cedf 100644 --- a/kernel/model/flashcard.go +++ b/kernel/model/flashcard.go @@ -1040,6 +1040,8 @@ func getDeckDueCards(deck *riff.Deck, reviewedCardIDs, blockIDs []string, newCar unreviewedOldCardCountInRound++ } } + } else { // 已经复习过了 Cards expired no longer appear in the same review round https://github.com/siyuan-note/siyuan/issues/10087 + continue } } else { unreviewedCount++