aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-client/src/record
diff options
context:
space:
mode:
authorConrad Ludgate <conradludgate@gmail.com>2023-08-18 21:45:29 +0100
committerGitHub <noreply@github.com>2023-08-18 20:45:29 +0000
commitaa8e5f5c04524d3d5c6f1d5b6c4616dbdb8d40be (patch)
tree74a027ed4cc186426851afc42cb0da23c3de043d /atuin-client/src/record
parentAdd kv map builder and list function (#1179) (diff)
downloadatuin-aa8e5f5c04524d3d5c6f1d5b6c4616dbdb8d40be.zip
Update dependencies (#1181)
Diffstat (limited to 'atuin-client/src/record')
-rw-r--r--atuin-client/src/record/sqlite_store.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/atuin-client/src/record/sqlite_store.rs b/atuin-client/src/record/sqlite_store.rs
index 14a7e277..db709f20 100644
--- a/atuin-client/src/record/sqlite_store.rs
+++ b/atuin-client/src/record/sqlite_store.rs
@@ -72,7 +72,7 @@ impl SqliteStore {
.bind(r.version.as_str())
.bind(r.data.data.as_str())
.bind(r.data.content_encryption_key.as_str())
- .execute(tx)
+ .execute(&mut **tx)
.await?;
Ok(())