mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
Fix fetchRecommendedShards
This commit is contained in:
@@ -54,7 +54,7 @@ class Util {
|
||||
static fetchRecommendedShards(token, guildsPerShard = 1000) {
|
||||
return new Promise((resolve, reject) => {
|
||||
if (!token) throw new Error('A token must be provided.');
|
||||
snekfetch.get(Constants.Endpoints.gateway.bot)
|
||||
snekfetch.get(`${Constants.DefaultOptions.http.host}/api/v${Constants.DefaultOptions.http.version}${Constants.Endpoints.gateway.bot}`)
|
||||
.set('Authorization', `Bot ${token.replace(/^Bot\s*/i, '')}`)
|
||||
.end((err, res) => {
|
||||
if (err) reject(err);
|
||||
|
||||
Reference in New Issue
Block a user