aboutsummaryrefslogtreecommitdiff
path: root/ui/tag-room-list.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/tag-room-list.go')
-rw-r--r--ui/tag-room-list.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/tag-room-list.go b/ui/tag-room-list.go
index ca24d4e..3bea033 100644
--- a/ui/tag-room-list.go
+++ b/ui/tag-room-list.go
@@ -170,7 +170,10 @@ func almostEqual(a, b float64) bool {
// ShouldBeAfter returns if the first room should be after the second room in the room list.
// The manual order and last received message timestamp are considered.
func (trl *TagRoomList) ShouldBeAfter(room1 *OrderedRoom, room2 *OrderedRoom) bool {
- return room1.order > room2.order || (almostEqual(room1.order, room2.order) && room2.LastReceivedMessage.After(room1.LastReceivedMessage))
+ // Lower order value = higher in list
+ return room1.order > room2.order ||
+ // Equal order value and more recent message = higher in the list
+ (almostEqual(room1.order, room2.order) && room2.LastReceivedMessage.After(room1.LastReceivedMessage))
}
func (trl *TagRoomList) Insert(order json.Number, mxRoom *rooms.Room) {