mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Clean Subreddit struct
This commit is contained in:
parent
4d18dc0bb8
commit
6bbc90bc0d
2 changed files with 5 additions and 3 deletions
|
@ -170,7 +170,7 @@ pub async fn media(data: &serde_json::Value) -> (String, String) {
|
|||
} else if data["post_hint"].as_str().unwrap_or("") == "image" {
|
||||
post_type = "image";
|
||||
format_url(data["preview"]["images"][0]["source"]["url"].as_str().unwrap_or_default().to_string())
|
||||
} else if data["is_self"].as_bool().unwrap_or_default() {
|
||||
} else if data["is_self"].as_bool().unwrap_or_default() {
|
||||
post_type = "self";
|
||||
data["permalink"].as_str().unwrap_or_default().to_string()
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue