Display "GIF" below gifs

Fixes #141
This commit is contained in:
Zed 2020-03-29 08:05:09 +02:00
parent b3d1fb4491
commit 9f9fccb70b
1 changed files with 2 additions and 1 deletions

View File

@ -115,7 +115,7 @@ proc renderGif(gif: Gif; prefs: Prefs): VNode =
let thumb = getPicUrl(gif.thumb)
let url = getGifUrl(gif.url)
if prefs.autoplayGifs:
video(class="gif", poster=thumb, autoplay="", muted="", loop=""):
video(class="gif", poster=thumb, controls="", autoplay="", muted="", loop=""):
source(src=url, `type`="video/mp4")
else:
video(class="gif", poster=thumb, controls="", muted="", loop=""):
@ -300,6 +300,7 @@ proc renderTweet*(tweet: Tweet; prefs: Prefs; path: string; class="";
views = tweet.video.get().views
elif tweet.gif.isSome:
renderGif(tweet.gif.get(), prefs)
views = "GIF"
elif tweet.poll.isSome:
renderPoll(tweet.poll.get())