diff options
author | Felix Rohrbach <fxrh@gmx.de> | 2016-09-15 00:26:05 +0200 |
---|---|---|
committer | Felix Rohrbach <fxrh@gmx.de> | 2016-09-15 00:26:05 +0200 |
commit | 87cb641e36fee7010766c73c32fa45115dec1a3c (patch) | |
tree | 0f64aeb55a126382803ccace8c70f641413b26eb | |
parent | d1dfe71769accc391a0a722bd4627b2d18389874 (diff) | |
download | libquotient-87cb641e36fee7010766c73c32fa45115dec1a3c.tar.gz libquotient-87cb641e36fee7010766c73c32fa45115dec1a3c.zip |
Correct user sorting for room name creation
In the previous version, it was possible that u1 >= u2 and u2 >= u1:
Assume u1 == me, u1->id() < u2->id()
Then u1 >= u2, as u1 == me (i.e. it returns false)
but also u2 >= u1, as u2->id() > u1->id() (returns false again)
For me, this had the effect of having three rooms called fxrh.
-rw-r--r-- | room.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -497,7 +497,9 @@ QString Room::Private::roomNameFromMemberNames(const QList<User *> &userlist) co first_two.begin(), first_two.end(), [this](const User* u1, const User* u2) { // Filter out the "me" user so that it never hits the room name - return u1 != connection->user() && u1->id() < u2->id(); + if( u1 == connection->user() || u2 == connection->user() ) + return u2 == connection->user(); + return u1->id() < u2->id(); } ); |