mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 22:17:41 +03:00
Fix Subreddit Icons
This commit is contained in:
parent
44d44a529c
commit
280e16bd7f
4 changed files with 19 additions and 14 deletions
|
@ -79,7 +79,11 @@ pub struct ErrorTemplate {
|
|||
// FORMATTING
|
||||
//
|
||||
|
||||
pub async fn format_url(url: &str) -> String {
|
||||
pub async fn format_url(url: String) -> String {
|
||||
if url.is_empty() {
|
||||
return String::new();
|
||||
};
|
||||
|
||||
#[cfg(feature = "proxy")]
|
||||
return "/proxy/".to_string() + encode(url).as_str();
|
||||
|
||||
|
@ -130,7 +134,7 @@ pub async fn fetch_posts(url: String, fallback_title: String) -> Result<(Vec<Pos
|
|||
|
||||
for post in post_list {
|
||||
let img = if val(post, "thumbnail").await.starts_with("https:/") {
|
||||
format_url(val(post, "thumbnail").await.as_str()).await
|
||||
format_url(val(post, "thumbnail").await).await
|
||||
} else {
|
||||
String::new()
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue