From 55d067957c7fbb5bcf88388bd165e6c6eab08be9 Mon Sep 17 00:00:00 2001 From: Zed Date: Sun, 7 Jun 2026 23:17:43 +0200 Subject: [PATCH] Fix arm32 compilation Fixes #1389 --- src/parser.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.nim b/src/parser.nim index 902aebd..c34ffa9 100644 --- a/src/parser.nim +++ b/src/parser.nim @@ -521,7 +521,7 @@ proc parseGraphTweet*(js: JsonNode): Tweet = "binding_values": %bindingObj } - var replyId = 0 + var replyId: int64 = 0 with restId, js{"reply_to_results", "rest_id"}: replyId = restId.getId