mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
This may as wel go in createclient
This commit is contained in:
parent
ddbac8c73a
commit
587a86441f
1 changed files with 2 additions and 1 deletions
|
@ -71,7 +71,6 @@ class MatrixClientPeg {
|
|||
}
|
||||
}
|
||||
this._createClient(hs_url, is_url, user_id, access_token);
|
||||
this.matrixClient.setGuest(Boolean(isGuest));
|
||||
|
||||
if (localStorage) {
|
||||
try {
|
||||
|
@ -146,6 +145,8 @@ class MatrixClientPeg {
|
|||
// we're going to add eventlisteners for each matrix event tile, so the
|
||||
// potential number of event listeners is quite high.
|
||||
this.matrixClient.setMaxListeners(500);
|
||||
|
||||
this.matrixClient.setGuest(Boolean(isGuest));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue