fixes build issues

This commit is contained in:
Keagan McClelland
2021-09-23 16:21:41 -06:00
committed by Aiden McClelland
parent eaa04f1b8c
commit 6de22116ce
2 changed files with 4 additions and 3 deletions

View File

@@ -193,6 +193,6 @@ pub async fn ui(
let ptr = "/ui".parse::<JsonPointer>()? + &pointer;
Ok(WithRevision {
response: (),
revision: Some(ctx.db.put(&ptr, &value, None).await?),
revision: ctx.db.put(&ptr, &value, None).await?,
})
}