Skip to content

Commit

Permalink
fixup! Add type for raw encrypted manifest originating from DB
Browse files Browse the repository at this point in the history
  • Loading branch information
FirelightFlagboy committed Jul 31, 2024
1 parent 660664d commit d30920e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libparsec/crates/platform_storage/src/web/workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,10 @@ impl PlatformWorkspaceStorage {
.collect::<Result<Vec<_>, _>>()
}

pub async fn get_manifest(&mut self, entry_id: VlobID) -> anyhow::Result<Option<Vec<u8>>> {
pub async fn get_manifest(
&mut self,
entry_id: VlobID,
) -> anyhow::Result<Option<RawEncryptedManifest>> {
let transaction = Vlob::read(&self.conn)?;

Ok(
Expand Down

0 comments on commit d30920e

Please sign in to comment.