Skip to content

Commit

Permalink
Added media channel type
Browse files Browse the repository at this point in the history
  • Loading branch information
Leref committed Nov 30, 2023
1 parent 0896bf1 commit 7e712f9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/classes/Util.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,17 +118,18 @@ class Util {
static get channelTypes() {
return {
Text: Discord.ChannelType.GuildText,
DM: Discord.ChannelType.DM,
GroupDM: Discord.ChannelType.GroupDM,
Forum: Discord.ChannelType.GuildForum,
Voice: Discord.ChannelType.GuildVoice,
Category: Discord.ChannelType.GuildCategory,
DM: Discord.ChannelType.DM,
Announcement: Discord.ChannelType.GuildAnnouncement,
AnnouncementThread: Discord.ChannelType.AnnouncementThread,
PublicThread: Discord.ChannelType.PublicThread,
PrivateThread: Discord.ChannelType.PrivateThread,
Stage: Discord.ChannelType.GuildStageVoice,
Forum: Discord.ChannelType.GuildForum,
Media: Discord.ChannelType.GuildMedia,
GuildDirectory: Discord.ChannelType.GuildDirectory,
GroupDM: Discord.ChannelType.GroupDM,
};
}

Expand Down

0 comments on commit 7e712f9

Please sign in to comment.