Skip to content

Commit

Permalink
fix(ChannelUpdate): Check against unknown channels (#9697)
Browse files Browse the repository at this point in the history
fix(ChannelUpdate): check against unknown channels
  • Loading branch information
Jiralite committed Jul 11, 2023
1 parent 09b0382 commit 7fb91c5
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions packages/discord.js/src/client/actions/ChannelUpdate.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,23 @@ const { createChannel } = require('../../util/Channels');
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 (channel.type !== data.type) {
const newChannel = createChannel(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.isTextBased() && newChannel.isTextBased()) {
for (const [id, message] of channel.messages.cache) newChannel.messages.cache.set(id, message);
}

channel = newChannel;
this.client.channels.cache.set(channel.id, channel);
}
Expand Down

0 comments on commit 7fb91c5

Please sign in to comment.