From 8f2c708751868faf0563cc997c320b74f3d35323 Mon Sep 17 00:00:00 2001 From: user1823 <92206575+user1823@users.noreply.github.com> Date: Thu, 15 May 2025 12:01:18 +0530 Subject: [PATCH] Include reset entries in dataset exported for research (#3998) https://github.com/open-spaced-repetition/fsrs4anki-helper/pull/566#issuecomment-2875432135 --- rslib/src/storage/revlog/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rslib/src/storage/revlog/mod.rs b/rslib/src/storage/revlog/mod.rs index 043014499..31ff613fa 100644 --- a/rslib/src/storage/revlog/mod.rs +++ b/rslib/src/storage/revlog/mod.rs @@ -158,7 +158,7 @@ impl SqliteStorage { self.db .prepare_cached(concat!( include_str!("get.sql"), - " where ease between 1 and 4", + " where (ease between 1 and 4) or (ease = 0 and factor = 0)", " order by cid, id" ))? .query_and_then([], row_to_revlog_entry)?