mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 11:28:15 +00:00
fix(ws/shard): pass shardID to sendWS() (#516)
This commit is contained in:
+2
-2
@@ -318,7 +318,7 @@ export function requestGuildMembers(
|
|||||||
user_ids: options?.userIDs,
|
user_ids: options?.userIDs,
|
||||||
nonce,
|
nonce,
|
||||||
},
|
},
|
||||||
});
|
}, shard?.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function processGatewayQueue() {
|
async function processGatewayQueue() {
|
||||||
@@ -398,7 +398,7 @@ export function botGatewayStatusRequest(payload: BotStatusRequest) {
|
|||||||
status: payload.status,
|
status: payload.status,
|
||||||
afk: false,
|
afk: false,
|
||||||
},
|
},
|
||||||
});
|
}, shard.id);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user