1
0
mirror of https://github.com/zedeus/nitter.git synced 2025-12-08 04:55:37 -05:00

Support "Replying to" and "Show thread"

This commit is contained in:
Zed
2019-07-02 00:52:50 +02:00
parent 97166feec9
commit a67d27e0c4
5 changed files with 83 additions and 43 deletions

View File

@@ -58,9 +58,11 @@ type
id*: string
profile*: Profile
text*: string
reply*: seq[string]
hasThread*: bool
sensitive*: bool
thumb*: Option[string]
badge*: Option[string]
thumb*: string
badge*: string
Retweet* = object
by*: string
@@ -77,8 +79,10 @@ type
text*: string
time*: Time
shortTime*: string
available*: bool
reply*: seq[string]
pinned*: bool
available*: bool
hasThread*: bool
stats*: TweetStats
retweet*: Option[Retweet]
quote*: Option[Quote]