mirror of
https://github.com/danbulant/discord.js
synced 2026-06-07 16:52:16 +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: {
|
data: {
|
||||||
name,
|
name,
|
||||||
topic,
|
topic,
|
||||||
type: type ? ChannelTypes[type.toUpperCase()] : 'text',
|
type: type ? ChannelTypes[type.toUpperCase()] : ChannelTypes.TEXT,
|
||||||
nsfw,
|
nsfw,
|
||||||
bitrate,
|
bitrate,
|
||||||
user_limit: userLimit,
|
user_limit: userLimit,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue