browser(firefox): fix typo in dispatcher teardown (#4069)

This commit is contained in:
Andrey Lushnikov 2020-10-06 12:06:50 -07:00 committed by GitHub
parent 5d1291528f
commit e6869edf98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
1183
Changed: lushnikov@chromium.org Tue Oct 6 01:20:41 PDT 2020
1184
Changed: lushnikov@chromium.org Tue Oct 6 12:04:41 PDT 2020

View File

@ -37,7 +37,7 @@ class Dispatcher {
_dispose() {
this._connection.onmessage = null;
this._connection.onclose = null;
this._rootSession.dispose();
this._rootSession._dispose();
this._rootSession = null;
this._sessions.clear();
}