Merge branch '455-blank-screen-is-displayed-when-the-uset-tries-to-join-the-room-through-link-or-scan-the-qr-code' into 'dev'

Fix param to createClient after SDK update

See merge request keanuapp/keanuapp-weblite!154
This commit is contained in:
N Pex 2023-03-28 12:39:04 +00:00
commit 385ab8486e

View file

@ -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) {