Webpack build for branch master: 8c220e76ec

This commit is contained in:
Travis CI 2017-01-15 04:35:11 +00:00
parent b57962a0b0
commit 714223e9f9
2 changed files with 5 additions and 3 deletions

View file

@ -21311,7 +21311,9 @@ class GuildDeleteAction extends Action {
let guild = client.guilds.get(data.id);
if (guild) {
for (const channel of guild.channels.values()) channel.stopTyping(true);
for (const channel of guild.channels.values()) {
if (channel.type === 'text') channel.stopTyping(true);
}
if (guild.available && data.unavailable) {
// guild is unavailable

File diff suppressed because one or more lines are too long