mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 03:25:12 +01:00
friends don't read each others private properties
This commit is contained in:
parent
46b24c3f24
commit
f6d9ffa7bb
@ -50,7 +50,7 @@ export class SessionViewModel extends ViewModel {
|
||||
|
||||
get selectionId() {
|
||||
if (this._currentRoomViewModel) {
|
||||
return this._currentRoomViewModel._room.id;
|
||||
return this._currentRoomViewModel.id;
|
||||
} else if (this._gridViewModel) {
|
||||
return "roomgrid";
|
||||
}
|
||||
@ -111,7 +111,7 @@ export class SessionViewModel extends ViewModel {
|
||||
_openRoom(room, roomTileVM) {
|
||||
if (this._gridViewModel?.tryFocusRoom(room.id)) {
|
||||
return;
|
||||
} else if (this._currentRoomViewModel?._room.id === room.id) {
|
||||
} else if (this._currentRoomViewModel?.id === room.id) {
|
||||
return;
|
||||
}
|
||||
const roomVM = new RoomViewModel(this.childOptions({
|
||||
|
@ -98,6 +98,10 @@ export class RoomViewModel extends ViewModel {
|
||||
return this._room.name || this.i18n`Empty Room`;
|
||||
}
|
||||
|
||||
get id() {
|
||||
return this._room.id;
|
||||
}
|
||||
|
||||
get timelineViewModel() {
|
||||
return this._timelineVM;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user