mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
fix(client): catch json suspended user error
This commit is contained in:
parent
e0d7837c02
commit
289cd393e7
1 changed files with 5 additions and 0 deletions
|
@ -425,6 +425,11 @@ pub async fn json(path: String, quarantine: bool) -> Result<Value, String> {
|
|||
let () = force_refresh_token().await;
|
||||
return Err("OAuth token has expired. Please refresh the page!".to_string());
|
||||
}
|
||||
|
||||
// Handle suspended user
|
||||
if json["message"] == "Forbidden" {
|
||||
return Err("suspended".into());
|
||||
}
|
||||
// Handle quarantined
|
||||
if json["reason"] == "quarantined" {
|
||||
return Err("quarantined".into());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue