Update dependencies (#1181)

This commit is contained in:
Conrad Ludgate
2023-08-18 21:45:29 +01:00
committed by GitHub
parent 69a772d1ca
commit aa8e5f5c04
10 changed files with 1091 additions and 666 deletions

View File

@ -247,7 +247,7 @@ impl Database for Postgres {
.bind(hostname)
.bind(i.timestamp)
.bind(data)
.execute(&mut tx)
.execute(&mut *tx)
.await
.map_err(fix_error)?;
}
@ -375,7 +375,7 @@ impl Database for Postgres {
.bind(&i.data.data)
.bind(&i.data.content_encryption_key)
.bind(user.id)
.execute(&mut tx)
.execute(&mut *tx)
.await
.map_err(fix_error)?;
}