소스 검색

Add tweet card image (if any) to the timeline RSS feed. (#438)

mooons 5 년 전
부모
커밋
5caf77481f
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      src/views/rss.nimf

+ 5 - 0
src/views/rss.nimf

@@ -44,6 +44,11 @@ Twitter feed for: ${desc}. Generated by ${cfg.hostname}
 #  let url = &"{urlPrefix}{getPicUrl(get(tweet.gif).url)}"
 <video poster="${thumb}" autoplay muted loop style="max-width:250px;">
   <source src="${url}" type="video/mp4"</source></video>
+#elif tweet.card.isSome:
+#  let card = tweet.card.get()
+#  if card.image.len > 0:
+<img src="${urlPrefix}${getPicUrl(card.image)}" style="max-width:250px;" />
+#  end if
 #end if
 #end proc
 #