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

This commit is contained in:
Matthew Esposito 2024-09-24 23:11:29 -04:00
parent f0ae3d3904
commit a35602b210

View file

@ -416,11 +416,14 @@ pub async fn json(path: String, quarantine: bool) -> Result<Value, String> {
match serde_json::from_reader(body.reader()) { match serde_json::from_reader(body.reader()) {
Ok(value) => { Ok(value) => {
let json: Value = value; let json: Value = value;
println!("{json:?}");
// If user is suspended // If user is suspended
if json["data"]["is_suspended"].as_bool().unwrap_or_default() { if let Some(data) = json.get("data") {
return Err("suspended".into()); if let Some(is_suspended) = data.get("is_suspended").and_then(Value::as_bool) {
if is_suspended {
return Err("suspended".into());
}
}
} }
// If Reddit returned an error // If Reddit returned an error