1
0
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:
Jason Francis
2019-12-09 18:39:12 -05:00
parent d6a2cd324f
commit 5576cbac8d
7 changed files with 19 additions and 19 deletions

View File

@@ -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