fix(MessageManager) fetch throw 'Missing Access'

This commit is contained in:
March 7th 2022-07-15 01:56:00 +07:00
parent b4c3de0fdf
commit fb6ab3f8e8

View File

@ -221,11 +221,11 @@ class MessageManager extends CachedManager {
}
// Const data = await this.client.api.channels[this.channel.id].messages[messageId].get(); // Discord Block
// https://canary.discord.com/api/v9/guilds/809133733591384155/messages/search?channel_id=840225732902518825&max_id=957254525360697375&min_id=957254525360697373
// https://canary.discord.com/api/v9/guilds/809133733591384155/messages/search?max_id=957254525360697375&min_id=957254525360697373
// Remove channelId from url (around not working)
const data = (
await this.client.api.guilds[this.channel.guild.id].messages.search.get({
query: {
channel_id: this.channel.id,
max_id: new BigNumber.BigNumber(messageId).plus(1).toString(),
min_id: new BigNumber.BigNumber(messageId).minus(1).toString(),
},