Merge pull request #38 from Troplo/master

Fix for invalid password bug on Synapse/Official Matrix Server?
This commit is contained in:
Ajay Bura 2021-08-03 14:28:13 +05:30 committed by GitHub
commit 20611b6e4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,10 @@ async function login(username, homeserver, password) {
const client = sdk.createClient({ baseUrl });
const response = await client.login('m.login.password', {
user: `@${username}:${homeserver}`,
identifier: {
type: 'm.id.user',
user: username,
},
password,
initial_device_display_name: cons.DEVICE_DISPLAY_NAME,
});