2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2024-11-10 06:25:00 +00:00

Include original error in object storage sendrequest error

This commit is contained in:
asonix 2023-06-21 17:07:14 -05:00
parent a3ff072350
commit 071d788349

View file

@ -46,7 +46,7 @@ pub(crate) enum ObjectError {
#[error("IO Error")] #[error("IO Error")]
IO(#[from] std::io::Error), IO(#[from] std::io::Error),
#[error("Error making request")] #[error("Error making request: {0}")]
SendRequest(String), SendRequest(String),
#[error("Failed to parse string")] #[error("Failed to parse string")]