Merge branch 'ChristianPauly-master-patch-44815' into 'master'

Fix sort order

See merge request ChristianPauly/fluffychat-flutter!80
onboarding
Christian Pauly 5 years ago
commit 4455cb0758

@ -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…
Cancel
Save