cleanup
This commit is contained in:
parent
6140301d9e
commit
201ca20646
3 changed files with 2 additions and 2 deletions
|
@ -36,6 +36,7 @@ export class PlaceholderRoomTileViewModel extends BaseTileViewModel {
|
||||||
}
|
}
|
||||||
|
|
||||||
compare(other) {
|
compare(other) {
|
||||||
|
// TODO: factor this out with the compare(other) of the room tile as it does this check as well.
|
||||||
if (other._room.index !== undefined) {
|
if (other._room.index !== undefined) {
|
||||||
return this._room.index > other._room.index ? 1 : -1;
|
return this._room.index > other._room.index ? 1 : -1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,7 +41,7 @@ export class RoomTileViewModel extends BaseTileViewModel {
|
||||||
|
|
||||||
// sync v3 has its own ordering, use it if we have an index
|
// sync v3 has its own ordering, use it if we have an index
|
||||||
if (this._room.index !== undefined && other._room.index !== undefined) {
|
if (this._room.index !== undefined && other._room.index !== undefined) {
|
||||||
return this._room.index > other._room.index ? 1 : -1;;
|
return this._room.index > other._room.index ? 1 : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -401,7 +401,6 @@ export class Session {
|
||||||
room.setInvite(invite);
|
room.setInvite(invite);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this._rooms.add(room.id, room);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dispose() {
|
dispose() {
|
||||||
|
|
Reference in a new issue