mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
Attempt to fix occasional cursor error
This commit is contained in:
parent
aa2fed19d7
commit
c09a8d87d9
3 changed files with 9 additions and 5 deletions
|
|
@ -26,7 +26,7 @@ proc renderNewer*(query: Query; path: string; focus=""): VNode =
|
|||
|
||||
proc renderMore*(query: Query; cursor: string; focus=""): VNode =
|
||||
buildHtml(tdiv(class="show-more")):
|
||||
a(href=(&"?{getQuery(query)}cursor={encodeUrl(cursor)}{focus}")):
|
||||
a(href=(&"?{getQuery(query)}cursor={encodeUrl(cursor, usePlus=false)}{focus}")):
|
||||
text "Load more"
|
||||
|
||||
proc renderNoMore(): VNode =
|
||||
|
|
|
|||
Loading…
Reference in a new issue