Include reset entries in dataset exported for research (#3998)

https://github.com/open-spaced-repetition/fsrs4anki-helper/pull/566#issuecomment-2875432135
This commit is contained in:
user1823 2025-05-15 12:01:18 +05:30 committed by GitHub
parent a2a1f597be
commit 8f2c708751
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)?