mirror of
https://github.com/zedeus/nitter
synced 2026-09-05 22:59:31 +00:00
Change ID types to int64
This commit is contained in:
parent
d6a2cd324f
commit
5576cbac8d
7 changed files with 19 additions and 19 deletions
|
|
@ -11,6 +11,6 @@ export embed
|
|||
proc createEmbedRouter*(cfg: Config) =
|
||||
router embed:
|
||||
get "/i/videos/tweet/@id":
|
||||
let tweet = Tweet(id: @"id".parseInt, video: some Video())
|
||||
let tweet = Tweet(id: @"id".parseBiggestInt, video: some Video())
|
||||
await getVideo(tweet, getAgent(), "")
|
||||
resp renderVideoEmbed(cfg, tweet)
|
||||
|
|
|
|||
Loading…
Reference in a new issue