Fix Hydra's ESLint failure

This commit is contained in:
Schuyler Cebulskie
2016-09-10 12:42:04 -04:00
parent 91a7d4f80e
commit a5a269b940

View File

@@ -11,7 +11,8 @@ class TypingStartHandler extends AbstractHandler {
if (channel && user) {
if (channel.type === 'voice') {
return client.emit('warn', `Discord sent a typing packet to voice channel ${channel.id}`);
client.emit('warn', `Discord sent a typing packet to voice channel ${channel.id}`);
return;
}
if (channel._typing.has(user.id)) {
const typing = channel._typing.get(user.id);