fix(client): catch json suspended user error

This commit is contained in:
Matthew Esposito 2024-09-24 23:01:15 -04:00
parent e0d7837c02
commit 289cd393e7

View file

@ -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());