forked from mystiq/hydrogen-web
remove user and password
This commit is contained in:
parent
191cb78d8f
commit
39d5073f49
1 changed files with 2 additions and 1 deletions
|
@ -48,7 +48,7 @@ const sessionContainer = new SessionContainer({
|
||||||
|
|
||||||
// wait for login and first sync to finish
|
// wait for login and first sync to finish
|
||||||
const loginOptions = await sessionContainer.queryLogin("matrix.org").result;
|
const loginOptions = await sessionContainer.queryLogin("matrix.org").result;
|
||||||
sessionContainer.startWithLogin(loginOptions.password("bruno4", "testtest"));
|
sessionContainer.startWithLogin(loginOptions.password("user", "password"));
|
||||||
await sessionContainer.loadStatus.waitFor((status: string) => {
|
await sessionContainer.loadStatus.waitFor((status: string) => {
|
||||||
return status === LoadStatus.Ready ||
|
return status === LoadStatus.Ready ||
|
||||||
status === LoadStatus.Error ||
|
status === LoadStatus.Error ||
|
||||||
|
@ -62,6 +62,7 @@ if (sessionContainer.loginFailure) {
|
||||||
} else {
|
} else {
|
||||||
// we're logged in, we can access the room now
|
// we're logged in, we can access the room now
|
||||||
const {session} = sessionContainer;
|
const {session} = sessionContainer;
|
||||||
|
// room id for #element-dev:matrix.org
|
||||||
const room = session.rooms.get("!bEWtlqtDwCLFIAKAcv:matrix.org");
|
const room = session.rooms.get("!bEWtlqtDwCLFIAKAcv:matrix.org");
|
||||||
const vm = new RoomViewModel({
|
const vm = new RoomViewModel({
|
||||||
room,
|
room,
|
||||||
|
|
Loading…
Reference in a new issue