diff --git a/src/client.rs b/src/client.rs index 9b8450a..c1de263 100644 --- a/src/client.rs +++ b/src/client.rs @@ -416,11 +416,14 @@ pub async fn json(path: String, quarantine: bool) -> Result { match serde_json::from_reader(body.reader()) { Ok(value) => { let json: Value = value; - println!("{json:?}"); // If user is suspended - if json["data"]["is_suspended"].as_bool().unwrap_or_default() { - return Err("suspended".into()); + if let Some(data) = json.get("data") { + 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