Do not compute link in getter

Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
RMidhunSuresh 2021-06-04 17:58:44 +05:30
parent 04065847dc
commit fcc2afba08

View file

@ -36,6 +36,7 @@ export class RoomViewModel extends ViewModel {
}
this._clearUnreadTimout = null;
this._closeUrl = this.urlCreator.urlUntilSegment("session");
this._detailsLink = this.urlCreator.urlForSegment("details");
}
async load() {
@ -103,6 +104,7 @@ export class RoomViewModel extends ViewModel {
get id() { return this._room.id; }
get timelineViewModel() { return this._timelineVM; }
get isEncrypted() { return this._room.isEncrypted; }
get detailsLink() { return this._detailsLink; }
get error() {
if (this._timelineError) {
@ -284,10 +286,6 @@ export class RoomViewModel extends ViewModel {
}
}
get detailsLink() {
return this.urlCreator.urlForSegment("details");
}
get composerViewModel() {
return this._composerVM;
}