Fix param to createClient after SDK update
This commit is contained in:
parent
9a1edaf6f2
commit
43d10037ef
1 changed files with 1 additions and 1 deletions
|
|
@ -923,7 +923,7 @@ export default {
|
||||||
return this.matrixClient;
|
return this.matrixClient;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const tempMatrixClient = sdk.createClient(this.$config.defaultServer);
|
const tempMatrixClient = sdk.createClient({baseUrl: this.$config.defaultServer});
|
||||||
var tempUserString = this.$store.state.tempuser;
|
var tempUserString = this.$store.state.tempuser;
|
||||||
var tempUser = null;
|
var tempUser = null;
|
||||||
if (tempUserString) {
|
if (tempUserString) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue