mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 22:17:41 +03:00
fix(client): catch json suspended user error in better place
This commit is contained in:
parent
f0ae3d3904
commit
a35602b210
1 changed files with 6 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue