Fix panic on 404

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
baalajimaestro 2023-12-24 18:24:44 +05:30
parent 38567f47a8
commit 66e61392be
Signed by: baalajimaestro
GPG key ID: F93C394FE9BBAFD5

View file

@ -39,7 +39,7 @@ struct GitLabSuccessJSON {
#[derive(Serialize, Deserialize)]
struct GitLabFailedJSON {
errors: Option<String>,
errors: Option<Vec<String>>,
message: String,
url: String
}