1
0
mirror of https://github.com/zedeus/nitter.git synced 2026-01-24 20:32:49 -05:00

Fix replying-to username links

This commit is contained in:
Zed
2019-07-03 10:28:50 +02:00
parent 45afa5509a
commit 4c37e93314

View File

@@ -113,7 +113,7 @@
#end proc
#
#proc renderReply(tweet: Tweet | Quote): string =
#let usernames = tweet.reply.mapIt(&"""<a href="{it}">@{it}</a>""")
#let usernames = tweet.reply.mapIt(&"""<a href="/{it}">@{it}</a>""")
<div class="replying-to">Replying to ${usernames.join(" ")}</div>
#end proc
#