We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8182012 commit 2831c60Copy full SHA for 2831c60
src/errors.rs
@@ -15,8 +15,8 @@ pub enum Error {
15
#[error(transparent)]
16
MeilisearchCommunication(#[from] MeilisearchCommunicationError),
17
/// The Meilisearch server returned an invalid JSON for a request.
18
- #[error(transparent)]
19
- SerdeParseError(#[from] serde_json::Error),
+ #[error("Error parsing response JSON: {}", .0)]
+ ParseError(#[from] serde_json::Error),
20
21
/// A timeout happened while waiting for an update to complete.
22
#[error("A task did not succeed in time.")]
0 commit comments