mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-24 13:09:24 +01:00
Merge branch 'ChristianPauly-master-patch-44815' into 'master'
Fix sort order See merge request ChristianPauly/fluffychat-flutter!80
This commit is contained in:
commit
cc95f119b3
@ -445,8 +445,8 @@ class _ChatListState extends State<ChatList> {
|
||||
?.statusMsg !=
|
||||
null
|
||||
? 1
|
||||
: a.lastEvent.originServerTs.compareTo(
|
||||
b.lastEvent.originServerTs));
|
||||
: b.lastEvent.originServerTs.compareTo(
|
||||
a.lastEvent.originServerTs));
|
||||
return ListView.separated(
|
||||
controller: _scrollController,
|
||||
separatorBuilder:
|
||||
|
Loading…
Reference in New Issue
Block a user