From 289cd393e716f7a68c69de2c03a7f98f6c67d4f3 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Tue, 24 Sep 2024 23:01:15 -0400 Subject: [PATCH] fix(client): catch json suspended user error --- src/client.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/client.rs b/src/client.rs index fb84ae0..fe5dc32 100644 --- a/src/client.rs +++ b/src/client.rs @@ -425,6 +425,11 @@ pub async fn json(path: String, quarantine: bool) -> Result { 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());