mirror of
https://github.com/zedeus/nitter
synced 2026-09-06 07:09:31 +00:00
Use int for tweet ids for correct thread sorting
This commit is contained in:
parent
4407651ed6
commit
1faf976d7c
8 changed files with 23 additions and 23 deletions
|
|
@ -241,7 +241,7 @@ proc getTweetCard*(tweet: Tweet; node: XmlNode) =
|
|||
if cardDiv == nil: return
|
||||
|
||||
var card = Card(
|
||||
id: tweet.id,
|
||||
id: $tweet.id,
|
||||
query: cardDiv.attr("data-src")
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue