Fix Crawl/Drah garbage

This commit is contained in:
Schuyler Cebulskie
2017-07-27 23:17:39 -04:00
committed by GitHub
parent 7b74b088ac
commit a46f606170

View File

@@ -30,7 +30,7 @@ class TextChannel extends GuildChannel {
* @type {boolean}
* @readonly
*/
this.nsfw = !!data.nsfw;
this.nsfw = Boolean(data.nsfw);
this.lastMessageID = data.last_message_id;
}