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,12 +416,15 @@ pub async fn json(path: String, quarantine: bool) -> Result<Value, String> {
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() {
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
if json["error"].is_i64() {