Merge branch 'krille/sort-invites-on-top' into 'master'
Sort invites on top See merge request famedly/famedlysdk!363
This commit is contained in:
commit
66e137582e
|
@ -1076,7 +1076,9 @@ class Client {
|
||||||
/// The compare function how the rooms should be sorted internally. By default
|
/// The compare function how the rooms should be sorted internally. By default
|
||||||
/// rooms are sorted by timestamp of the last m.room.message event or the last
|
/// rooms are sorted by timestamp of the last m.room.message event or the last
|
||||||
/// event if there is no known message.
|
/// event if there is no known message.
|
||||||
RoomSorter sortRoomsBy = (a, b) => (a.isFavourite != b.isFavourite)
|
RoomSorter sortRoomsBy = (a, b) => (a.membership != b.membership)
|
||||||
|
? (a.membership == Membership.invite ? -1 : 1)
|
||||||
|
: (a.isFavourite != b.isFavourite)
|
||||||
? (a.isFavourite ? -1 : 1)
|
? (a.isFavourite ? -1 : 1)
|
||||||
: b.timeCreated.millisecondsSinceEpoch
|
: b.timeCreated.millisecondsSinceEpoch
|
||||||
.compareTo(a.timeCreated.millisecondsSinceEpoch);
|
.compareTo(a.timeCreated.millisecondsSinceEpoch);
|
||||||
|
|
Loading…
Reference in a new issue