fix(client): catch json suspended user error in better place

This commit is contained in:
Matthew Esposito 2024-09-24 23:08:41 -04:00
parent 52260196f0
commit f0ae3d3904

View file

@ -419,7 +419,7 @@ pub async fn json(path: String, quarantine: bool) -> Result<Value, String> {
println!("{json:?}");
// If user is suspended
if json["data"]["is_suspended"].as_bool().unwrap_or_default() {
if json["data"]["is_suspended"].as_bool().unwrap_or_default() {
return Err("suspended".into());
}