mirror of
https://github.com/zedeus/nitter.git
synced 2025-12-15 16:52:48 -05:00
Change ID types to int64
This commit is contained in:
@@ -115,7 +115,7 @@ type
|
||||
video*: Option[Video]
|
||||
|
||||
Quote* = object
|
||||
id*: int
|
||||
id*: int64
|
||||
profile*: Profile
|
||||
text*: string
|
||||
reply*: seq[string]
|
||||
@@ -128,7 +128,7 @@ type
|
||||
|
||||
Retweet* = object
|
||||
by*: string
|
||||
id*: int
|
||||
id*: int64
|
||||
|
||||
TweetStats* = object
|
||||
replies*: string
|
||||
@@ -136,8 +136,8 @@ type
|
||||
likes*: string
|
||||
|
||||
Tweet* = ref object
|
||||
id*: int
|
||||
threadId*: int
|
||||
id*: int64
|
||||
threadId*: int64
|
||||
profile*: Profile
|
||||
text*: string
|
||||
time*: Time
|
||||
@@ -159,7 +159,7 @@ type
|
||||
|
||||
Chain* = ref object
|
||||
content*: seq[Tweet]
|
||||
more*: int
|
||||
more*: int64
|
||||
|
||||
Conversation* = ref object
|
||||
tweet*: Tweet
|
||||
|
||||
Reference in New Issue
Block a user