mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 14:02:02 +00:00
fix(GuildChannelStore): default channel type incorrectly set (#3496)
This commit is contained in:
parent
41c0dd44eb
commit
a03e439d6b
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ class GuildChannelStore extends DataStore {
|
|||
data: {
|
||||
name,
|
||||
topic,
|
||||
type: type ? ChannelTypes[type.toUpperCase()] : 'text',
|
||||
type: type ? ChannelTypes[type.toUpperCase()] : ChannelTypes.TEXT,
|
||||
nsfw,
|
||||
bitrate,
|
||||
user_limit: userLimit,
|
||||
|
|
|
|||
Loading…
Reference in a new issue