mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Handle comment parsing errors
This commit is contained in:
parent
541c741bde
commit
eb735a42fe
2 changed files with 12 additions and 9 deletions
|
@ -172,7 +172,7 @@ pub async fn media(data: &serde_json::Value) -> (String, String) {
|
|||
post_type = "image";
|
||||
match preview["variants"]["mp4"].as_object() {
|
||||
Some(gif) => format_url(gif["source"]["url"].as_str().unwrap_or_default()),
|
||||
None => format_url(preview["source"]["url"].as_str().unwrap_or_default())
|
||||
None => format_url(preview["source"]["url"].as_str().unwrap_or_default()),
|
||||
}
|
||||
} else if data["is_self"].as_bool().unwrap_or_default() {
|
||||
post_type = "self";
|
||||
|
@ -182,7 +182,7 @@ pub async fn media(data: &serde_json::Value) -> (String, String) {
|
|||
data["url"].as_str().unwrap_or_default().to_string()
|
||||
};
|
||||
|
||||
(post_type.to_string(), url.to_string())
|
||||
(post_type.to_string(), url)
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue