From 3eb41405f412ee2b2d05c4245c4ebb80adfcec6b Mon Sep 17 00:00:00 2001 From: monbrey Date: Thu, 5 Aug 2021 08:45:26 +1000 Subject: [PATCH] fix(BaseGuildTextChannel): call patch (#6298) --- src/structures/BaseGuildTextChannel.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/structures/BaseGuildTextChannel.js b/src/structures/BaseGuildTextChannel.js index 9571d239c191..0e1fd13f8371 100644 --- a/src/structures/BaseGuildTextChannel.js +++ b/src/structures/BaseGuildTextChannel.js @@ -39,6 +39,8 @@ class BaseGuildTextChannel extends GuildChannel { * @type {boolean} */ this.nsfw = Boolean(data.nsfw); + + this._patch(data); } _patch(data) {