Make order relation on contacts antisymmetric

This commit is contained in:
Richard Garner 2021-01-23 09:07:35 +11:00
parent a850370d68
commit f65bb4196c
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ struct ContactInfoLessThan {
if (ci1.personal != ci2.personal)
return ci1.personal; // personal comes first
if (ci1.last_seen > recently_)
if ((ci1.last_seen > recently_) != (ci2.last_seen > recently_))
return ci1.last_seen > ci2.last_seen;
if (ci1.freq != ci2.freq) // more frequent comes first