1
0
mirror of https://github.com/zedeus/nitter.git synced 2025-12-15 16:52:48 -05:00

Implement proper infinite scroll for replies

Fixes #125
This commit is contained in:
Zed
2020-04-29 18:09:13 +02:00
parent d20cddd15f
commit c6215876fa
9 changed files with 102 additions and 44 deletions

View File

@@ -77,14 +77,6 @@ type
near*: string
sep*: string
Result*[T] = ref object
content*: seq[T]
minId*: string
maxId*: string
hasMore*: bool
beginning*: bool
query*: Query
Gif* = object
url*: string
thumb*: string
@@ -166,6 +158,14 @@ type
photos*: seq[string]
poll*: Option[Poll]
Result*[T] = ref object
content*: seq[T]
minId*: string
maxId*: string
hasMore*: bool
beginning*: bool
query*: Query
Chain* = ref object
content*: seq[Tweet]
more*: int64