Settings Button

This commit is contained in:
spikecodes 2021-01-05 18:16:32 -08:00
parent aa7b4b2af7
commit b50fa6f3ae
3 changed files with 23 additions and 4 deletions

View file

@ -205,8 +205,6 @@ pub async fn fetch_posts(path: &str, fallback_title: String) -> Result<(Vec<Post
// Determine the type of media along with the media URL
let media = media(&post["data"]).await;
dbg!(post["data"]["id"].to_string());
posts.push(Post {
id: val(post, "id"),
title: if title.is_empty() { fallback_title.to_owned() } else { title },