File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77
88#pragma once
99
10- #define NCHAT_VERSION "5.11.29 "
10+ #define NCHAT_VERSION "5.11.30 "
Original file line number Diff line number Diff line change 11.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
2- .TH NCHAT "1" "October 2025" "nchat 5.11.29 " "User Commands"
2+ .TH NCHAT "1" "October 2025" "nchat 5.11.30 " "User Commands"
33.SH NAME
44nchat \- ncurses chat
55.SH SYNOPSIS
Original file line number Diff line number Diff line change @@ -1954,6 +1954,10 @@ void UiModel::Impl::SortChats()
19541954 if (lhsChatInfo.lastMessageTime > rhsChatInfo.lastMessageTime ) return true ;
19551955 if (lhsChatInfo.lastMessageTime < rhsChatInfo.lastMessageTime ) return false ;
19561956
1957+ // lower chat ids are listed first
1958+ if (lhsChatInfo.id < rhsChatInfo.id ) return true ;
1959+ if (lhsChatInfo.id > rhsChatInfo.id ) return false ;
1960+
19571961 return false ;
19581962 });
19591963
You can’t perform that action at this time.
0 commit comments