Skip to content

Commit

Permalink
fix: missing 'format' in error context msg
Browse files Browse the repository at this point in the history
  • Loading branch information
dlachaume committed May 14, 2024
1 parent 50df037 commit 68b93f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ where
}
_ => request_first_list_item_with_expected_size::<I>(url, expected_size).await,
},
Err(err) => Err(anyhow!(err).context("Request to `{url}` failed")),
Err(err) => Err(anyhow!(err).context(format!("Request to `{url}` failed"))),
}
}

Expand Down

0 comments on commit 68b93f4

Please sign in to comment.