From 105bb18ae6458143b8d2f44127d6730b67149c0d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 16 Apr 2021 08:01:23 -0400 Subject: [PATCH] Fix --- structures/Client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/structures/Client.js b/structures/Client.js index 7fbb2417..f0bdae0a 100644 --- a/structures/Client.js +++ b/structures/Client.js @@ -65,7 +65,7 @@ module.exports = class XiaoClient extends CommandoClient { async postBotsGGStats() { try { const { body } = await request - .post(`https://discordbotlist.com/api/v1/bots/${this.user.id}/stats`) + .post(`https://discord.bots.gg/api/bots/${this.user.id}/stats`) .set({ Authorization: BOTS_GG_TOKEN }) .send({ guildCount: this.guilds.size }); this.logger.info('[BOTS.GG] Posted stats.'); @@ -79,7 +79,7 @@ module.exports = class XiaoClient extends CommandoClient { async postDiscordBotListStats() { try { const { body } = await request - .post(`https://discord.bots.gg/api/bots/${this.user.id}/stats`) + .post(`https://discordbotlist.com/api/v1/bots/${this.user.id}/stats`) .set({ Authorization: DISCORDBOTLIST_TOKEN }) .send({ guilds: this.guilds.size,