Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Dec 16, 2022
1 parent f1addd6 commit c923bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subcommand/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ impl Server {
ServerError::NotFound(format!("inscription {inscription_id} has no content"))
})?;

Ok((([(header::CONTENT_TYPE, content_type)], content)).into_response())
Ok(([(header::CONTENT_TYPE, content_type)], content).into_response())
}

fn content_response(inscription: Inscription) -> Option<(String, Vec<u8>)> {
Expand Down

0 comments on commit c923bc4

Please sign in to comment.