Add Pages to User Profiles

This commit is contained in:
spikecodes 2020-12-27 12:36:10 -08:00
parent bec5c78709
commit 68495fb280
3 changed files with 31 additions and 9 deletions

View file

@ -121,7 +121,7 @@ pub async fn nested_val(j: &serde_json::Value, n: &str, k: &str) -> String {
// Fetch posts of a user or subreddit
pub async fn fetch_posts(url: String, fallback_title: String) -> Result<(Vec<Post>, String), &'static str> {
// Send a request to the url, receive JSON in response
let req = request(url).await;
let req = request(url.clone()).await;
// If the Reddit API returns an error, exit this function
if req.is_err() {
@ -174,6 +174,8 @@ pub async fn fetch_posts(url: String, fallback_title: String) -> Result<(Vec<Pos
});
}
dbg!(url);
Ok((posts, res["data"]["after"].as_str().unwrap_or("").to_string()))
}