mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 11:33:30 +01:00
fix(GuildChannelStore): default channel type incorrectly set (#3496)
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user