Merge pull request #205 from websharik/main

fix: Lint
This commit is contained in:
Cinnamon 2022-07-15 01:42:26 +07:00 committed by GitHub
commit e284ef51ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,6 @@
'use strict';
const { Collection } = require('@discordjs/collection');
const BigNumber = require('bignumber.js');
const CachedManager = require('./CachedManager');
const { TypeError, Error } = require('../errors');
const { Message } = require('../structures/Message');
@ -223,7 +222,7 @@ 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
const data = (
await this.client.api.channels[this.channel.id].messages.get({ query: { limit: 1, around: messageId }})
await this.client.api.channels[this.channel.id].messages.get({ query: { limit: 1, around: messageId } })
).messages[0];
if (data) return this._add(data[0], cache);
else throw new Error('MESSAGE_ID_NOT_FOUND');