소스 검색

Fix broken reddit video & nsfw post thumbnails

Svilen Markov 7 달 전
부모
커밋
e546488aeb
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      internal/feed/reddit.go

+ 2 - 2
internal/feed/reddit.go

@@ -111,8 +111,8 @@ func FetchSubredditPosts(subreddit, sort, topPeriod, search, commentsUrlTemplate
 			TimePosted:      time.Unix(int64(post.Time), 0),
 		}
 
-		if post.Thumbnail != "" && post.Thumbnail != "self" && post.Thumbnail != "default" {
-			forumPost.ThumbnailUrl = post.Thumbnail
+		if post.Thumbnail != "" && post.Thumbnail != "self" && post.Thumbnail != "default" && post.Thumbnail != "nsfw" {
+			forumPost.ThumbnailUrl = html.UnescapeString(post.Thumbnail)
 		}
 
 		if !post.IsSelf {