URL decode queries.

This commit is contained in:
2023-09-05 09:49:59 -07:00
parent 042d475c75
commit 01e5ea14ab
4 changed files with 18 additions and 5 deletions

View File

@@ -454,6 +454,8 @@ pub enum NotmuchError {
SerdeJson(#[from] serde_json::Error),
#[error("failed to parse bytes as str")]
Utf8Error(#[from] std::str::Utf8Error),
#[error("failed to parse bytes as String")]
StringUtf8Error(#[from] std::string::FromUtf8Error),
#[error("failed to parse str as int")]
ParseIntError(#[from] std::num::ParseIntError),
}