From 806b70dafd5e715186e22bed2f1aea5c57e63e5f Mon Sep 17 00:00:00 2001 From: Dendy Faist Date: Fri, 11 Apr 2025 07:41:41 +0200 Subject: [PATCH] fix: Take suspended cards into account when creating new production notes --- src/Service/AnkiService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/AnkiService.php b/src/Service/AnkiService.php index 9e1eaee..cd69c8a 100644 --- a/src/Service/AnkiService.php +++ b/src/Service/AnkiService.php @@ -56,7 +56,7 @@ class AnkiService public function getAllSentenceListeningNoteIds(): array { $query = sprintf( - '"note:%s" -is:suspended', + '"note:%s"', SentenceListeningNote::MODEL_NAME, );