fix(ChannelUpdate): Check against unknown channels (#9698)

fix(ChannelUpdate): check against unknown channels
This commit is contained in:
Jiralite 2023-07-11 07:32:22 +01:00 committed by GitHub
parent f9e9843a92
commit 630b9d51ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,14 +7,23 @@ const { ChannelTypes } = require('../../util/Constants');
class ChannelUpdateAction extends Action {
handle(data) {
const client = this.client;
let channel = client.channels.cache.get(data.id);
if (channel) {
const old = channel._update(data);
if (ChannelTypes[channel.type] !== data.type) {
const newChannel = Channel.create(this.client, data, channel.guild);
for (const [id, message] of channel.messages.cache) newChannel.messages.cache.set(id, message);
if (!newChannel) {
this.client.channels.cache.delete(channel.id);
return {};
}
if (channel.isText() && newChannel.isText()) {
for (const [id, message] of channel.messages.cache) newChannel.messages.cache.set(id, message);
}
channel = newChannel;
this.client.channels.cache.set(channel.id, channel);
}