Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
Signed-off-by: suyanhanx <suyanhanx@gmail.com>
  • Loading branch information
suyanhanx committed Aug 29, 2023
1 parent c610776 commit 5d747aa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/services/gdrive/backend.rs
Expand Up @@ -149,7 +149,9 @@ impl Accessor for GdriveBackend {
let status = resp.status();

match status {
StatusCode::OK | StatusCode::PARTIAL_CONTENT => Ok((RpRead::with_metadata(meta), resp.into_body())),
StatusCode::OK | StatusCode::PARTIAL_CONTENT => {
Ok((RpRead::with_metadata(meta), resp.into_body()))
}
_ => Err(parse_error(resp).await?),
}
}
Expand Down

0 comments on commit 5d747aa

Please sign in to comment.