You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Fix MatrixClientPeg.start()
Move import & use `this`
This commit is contained in:
@@ -17,6 +17,7 @@ limitations under the License.
|
||||
'use strict';
|
||||
|
||||
import Matrix from 'matrix-js-sdk';
|
||||
import utils from 'matrix-js-sdk/lib/utils';
|
||||
|
||||
const localStorage = window.localStorage;
|
||||
|
||||
@@ -89,7 +90,7 @@ class MatrixClientPeg {
|
||||
}
|
||||
|
||||
start() {
|
||||
const opts = utils.deepCopy(MatrixClientPeg.opts);
|
||||
const opts = utils.deepCopy(this.opts);
|
||||
opts.pendingEventOrdering = "detached";
|
||||
this.get().startClient(opts);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user