Webpack build for branch 11.1-dev: 618fa2b104

This commit is contained in:
Travis CI 2017-08-20 20:29:21 +00:00
parent 2545837038
commit 4dc452628f
2 changed files with 2 additions and 2 deletions

View file

@ -17750,7 +17750,7 @@ class WebSocketConnection extends EventEmitter {
* @returns {void} * @returns {void}
*/ */
identify(after) { identify(after) {
if (after) return this.client.setTimeout(this.identify.apply(this), after); if (after) return this.client.setTimeout(this.identify.bind(this), after);
return this.sessionID ? this.identifyResume() : this.identifyNew(); return this.sessionID ? this.identifyResume() : this.identifyNew();
} }

File diff suppressed because one or more lines are too long