aboutsummaryrefslogtreecommitdiff
path: root/lib/gateway
diff options
context:
space:
mode:
authorMatias Goldfeld <[email protected]>2021-01-29 13:42:34 -0500
committerMatias Goldfeld <[email protected]>2021-01-29 13:42:34 -0500
commit2f37138dedb34651ddb2efd687a8d860b0138778 (patch)
treeb0d89ca5795724b3bb804f2d65ee609217567ecd /lib/gateway
parentRevert "More 32 bit fixes" (diff)
downloaddisml-2f37138dedb34651ddb2efd687a8d860b0138778.tar.xz
disml-2f37138dedb34651ddb2efd687a8d860b0138778.zip
Reverted attempts to add 32-bit compatibility
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
]