Skip to content

Commit c687137

Browse files
authored
Update DiscordsCom.ts (#738)
* Update DiscordsCom.ts They've changed the endpoint for posting statistics, or it was incorrect. I have the documentation for you to refer to here. https://docs.discords.com/discords.com-bots/updating-server-count#update-your-bots-displayed-server-count * Update DiscordsCom.ts Updated documentation reference
1 parent 6d98225 commit c687137

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Interface/Lists/DiscordsCom.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Query } from '../../Utils/Constants'
44

55
/**
66
* Represents the Discords.com service (formerly Bots For Discord).
7-
* @see https://docs.botsfordiscord.com/
7+
* @see https://docs.discords.com/
88
*/
99
export default class DiscordsCom extends Service {
1010
/** The values that can be used to select the service. */
@@ -41,7 +41,7 @@ export default class DiscordsCom extends Service {
4141
const { token, clientID, serverCount } = options
4242
return super._post({
4343
method: 'post',
44-
url: `/bot/${Util.resolveID(clientID)}`,
44+
url: `/bot/${Util.resolveID(clientID)}/setservers`,
4545
headers: { Authorization: token },
4646
data: { server_count: Util.resolveCount(serverCount) }
4747
})

0 commit comments

Comments
 (0)