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

Use int for tweet ids for correct thread sorting

This commit is contained in:
Zed
2019-10-10 18:22:14 +02:00
parent 4407651ed6
commit 1faf976d7c
8 changed files with 23 additions and 23 deletions

View File

@@ -115,7 +115,7 @@ type
video*: Option[Video]
Quote* = object
id*: string
id*: int
profile*: Profile
text*: string
reply*: seq[string]
@@ -128,7 +128,7 @@ type
Retweet* = object
by*: string
id*: string
id*: int
TweetStats* = object
replies*: string
@@ -136,8 +136,8 @@ type
likes*: string
Tweet* = ref object
id*: string
threadId*: string
id*: int
threadId*: int
profile*: Profile
text*: string
time*: Time