Skip to content

Commit

Permalink
rssmix - Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shirok committed Nov 5, 2023
1 parent 6f07d8e commit 6554c1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wiliki/rssmix.scm
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
(define (db-mget ids)
(with-db (db :read) (map (cut db-get1 db <>) ids)))
(define (db-put! id record)
(with-db (db :write) (dbm-put! db id record)))
(with-db (db :write) (dbm-put! db id (write-to-string record))))
(match-lambda*
[('get id) (db-get id)]
[('mget ids) (db-mget ids)]
Expand Down

0 comments on commit 6554c1b

Please sign in to comment.