diff options
author | 2024-02-20 17:46:30 -0800 | |
---|---|---|
committer | 2024-02-20 17:47:02 -0800 | |
commit | 3f212326001bfb5805ae5b501ac64507876056c9 (patch) | |
tree | 4342a0027ba3979c25437b81c5b97982cfaf311e /trakt-core/src/error.rs | |
parent | 13ab692eadd8a8623eb31b030d3eff6ed8d8ff97 (diff) | |
download | trakt-3f212326001bfb5805ae5b501ac64507876056c9.tar.gz trakt-3f212326001bfb5805ae5b501ac64507876056c9.tar.zst trakt-3f212326001bfb5805ae5b501ac64507876056c9.zip |
fix: incorrect display message in error
Diffstat (limited to '')
-rw-r--r-- | trakt-core/src/error.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trakt-core/src/error.rs b/trakt-core/src/error.rs index b221151..37a430a 100644 --- a/trakt-core/src/error.rs +++ b/trakt-core/src/error.rs @@ -79,7 +79,7 @@ pub enum IntoHttpError { QueryParams(#[from] serde_urlencoded::ser::Error), #[error("Missing oauth token")] MissingToken, - #[error("Invalid comment")] + #[error("Validation Error: {0}")] Validation(String), } |