This commit is contained in:
Travis CI 2016-11-27 12:03:25 +00:00
parent 91a9c6546c
commit aa5d7b8f63
2 changed files with 2 additions and 2 deletions

View file

@ -20631,7 +20631,7 @@ class WebSocketManager extends EventEmitter {
* @type {Object}
*/
this.disabledEvents = {};
for (const event in client.options.disabledEvents) this.disabledEvents[event] = true;
for (const event of client.options.disabledEvents) this.disabledEvents[event] = true;
this.first = true;
}

File diff suppressed because one or more lines are too long