Fix crash for invalid timeline queries

This commit is contained in:
Zed 2019-09-13 23:19:31 +02:00
parent 30bab22dae
commit 5510330f70
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ proc renderSearch*(): VNode =
button(`type`="submit"): icon "search"
proc renderTweetSearch*(timeline: Timeline; prefs: Prefs; path: string): VNode =
let users = get(timeline.query).fromUser
let users =
if timeline.query.isSome: get(timeline.query).fromUser
else: @[]
buildHtml(tdiv(class="timeline-container")):
tdiv(class="timeline-header"):
text users.join(" | ")