mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Move nested_val() to user.rs
This commit is contained in:
parent
09c98c8da6
commit
740641cb4e
2 changed files with 8 additions and 10 deletions
|
@ -244,11 +244,6 @@ pub fn val(j: &serde_json::Value, k: &str) -> String {
|
|||
String::from(j["data"][k].as_str().unwrap_or_default())
|
||||
}
|
||||
|
||||
// nested_val() function used to parse JSON from Reddit APIs
|
||||
pub fn nested_val(j: &serde_json::Value, n: &str, k: &str) -> String {
|
||||
String::from(j["data"][n][k].as_str().unwrap_or_default())
|
||||
}
|
||||
|
||||
// Fetch posts of a user or subreddit and return a vector of posts and the "after" value
|
||||
pub async fn fetch_posts(path: &str, fallback_title: String) -> Result<(Vec<Post>, String), &'static str> {
|
||||
let res;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue