This commit is contained in:
Jaremy Creechley 2023-09-20 22:44:37 -07:00
parent 8b494907c6
commit 76b952c928
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -67,7 +67,7 @@ proc get*(self: SQLiteDatastore, key: DbKey): ?!seq[byte] =
bytes: seq[byte]
proc onData(s: RawStmtPtr) =
bytes = self.db.getDataCol()
bytes = dataCol(self.db.getDataCol)
if err =? self.db.getStmt.query((key), onData).errorOption:
return failure(err)