diff options
author | Joris | 2025-02-07 11:37:33 +0100 |
---|---|---|
committer | Joris | 2025-02-07 11:37:33 +0100 |
commit | f7afa9cf50a9459f41146ca5cb009eab69b76c5f (patch) | |
tree | c459003eb8aaf600ce35b567f74dd01e83327485 /src/db | |
parent | b24dda856ddc1317816f6ab156096528e23d724c (diff) |
Upgrade dependencies
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/cards.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/db/cards.rs b/src/db/cards.rs index 6d3e28d..709e4eb 100644 --- a/src/db/cards.rs +++ b/src/db/cards.rs @@ -109,7 +109,6 @@ pub fn pick_random_ready(conn: &Connection) -> Option<Card> { question: row.get(0).ok()?, responses: serialization::line_to_words(&responses_str), state: serde_json::from_str(&state_str).ok()?, - ready: row.get(3).ok()?, }) } |