aboutsummaryrefslogtreecommitdiff
path: root/lib/gateway
diff options
context:
space:
mode:
authorMatias Goldfeld <[email protected]>2021-01-28 00:50:21 -0500
committerMatias Goldfeld <[email protected]>2021-01-28 00:50:21 -0500
commitb499169e93e9f7bdd0f877a3cdf0247ec495abe1 (patch)
tree52696cb3e1c16a84513fb90fe50c3738ce4539cb /lib/gateway
parentMore 32 bit fixes (diff)
downloaddisml-b499169e93e9f7bdd0f877a3cdf0247ec495abe1.tar.xz
disml-b499169e93e9f7bdd0f877a3cdf0247ec495abe1.zip
More Int64 refactors
Diffstat (limited to 'lib/gateway')
-rw-r--r--lib/gateway/sharder.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gateway/sharder.ml b/lib/gateway/sharder.ml
index 14763ca..31275b2 100644
--- a/lib/gateway/sharder.ml
+++ b/lib/gateway/sharder.ml
@@ -130,7 +130,7 @@ module Shard = struct
let request_guild_members ?(query="") ?(limit=0) ~guild shard =
let payload = `Assoc
- [ "guild_id", `String (Int.to_string guild)
+ [ "guild_id", `String (Int64.to_string guild)
; "query", `String query
; "limit", `Int limit
]