Merge pull request #38 from Troplo/master
Fix for invalid password bug on Synapse/Official Matrix Server?
This commit is contained in:
commit
20611b6e4b
1 changed files with 4 additions and 1 deletions
|
@ -15,7 +15,10 @@ async function login(username, homeserver, password) {
|
||||||
const client = sdk.createClient({ baseUrl });
|
const client = sdk.createClient({ baseUrl });
|
||||||
|
|
||||||
const response = await client.login('m.login.password', {
|
const response = await client.login('m.login.password', {
|
||||||
user: `@${username}:${homeserver}`,
|
identifier: {
|
||||||
|
type: 'm.id.user',
|
||||||
|
user: username,
|
||||||
|
},
|
||||||
password,
|
password,
|
||||||
initial_device_display_name: cons.DEVICE_DISPLAY_NAME,
|
initial_device_display_name: cons.DEVICE_DISPLAY_NAME,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue