diff --git a/packages/core/src/structures/channels.ts b/packages/core/src/structures/channels.ts index 261a652..6bc443a 100644 --- a/packages/core/src/structures/channels.ts +++ b/packages/core/src/structures/channels.ts @@ -726,11 +726,7 @@ export class DMChannel extends BaseChannel implements Model { this.group = data.recipents.map(r => new User(this.session, r)); } - if (this.group) { - this.type = ChannelTypes.GroupDm; - } else { - this.type = ChannelTypes.DM; - } + this.type = ChannelTypes.GroupDm | ChannelTypes.GroupDm; if (data.last_message_id) { this.lastMessageId = data.last_message_id;