remove comment

This commit is contained in:
Lennart
2024-03-15 21:51:26 +01:00
parent a8dc00b9e1
commit 4f1a59b66d

View File

@@ -13,8 +13,6 @@ pub enum Error {
Unauthorized,
#[error("Internal server error :(")]
InternalError,
// #[error(transparent)]
// PropfindError(#[from] propfind::Error),
#[error("Internal server error")]
Other(#[from] anyhow::Error),
}
@@ -27,7 +25,6 @@ impl actix_web::error::ResponseError for Error {
Self::NotFound => StatusCode::NOT_FOUND,
Self::BadRequest => StatusCode::BAD_REQUEST,
Self::Unauthorized => StatusCode::UNAUTHORIZED,
// Self::PropfindError(e) => e.status_code(),
}
}