diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-16 20:56:48 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-06-16 20:56:48 +0900 |
commit | f2593ec532311133c51146d1a42faf7e01ea5e86 (patch) | |
tree | 73e603562b9f5512c045e541d75290efae897736 | |
parent | df0927e8be4ea9c5cec06ed7eaee0ccf44a0942f (diff) | |
download | libquotient-f2593ec532311133c51146d1a42faf7e01ea5e86.tar.gz libquotient-f2593ec532311133c51146d1a42faf7e01ea5e86.zip |
Connection::doInDirectChat: "direct chat with self" feature
Essentially - create/switch to the room with you as the only member
instead of getting the first room where you happen to be flagged as a
direct chat user (which is pretty unpredictable even if stable from the
user point of view).
-rw-r--r-- | lib/connection.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index 6c04cf08..d363b433 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -497,6 +497,9 @@ void Connection::doInDirectChat(const QString& userId, if (auto r = room(roomId, JoinState::Join)) { Q_ASSERT(r->id() == roomId); + // A direct chat with yourself should only involve yourself :) + if (userId == d->userId && r->memberCount() > 1) + continue; qCDebug(MAIN) << "Requested direct chat with" << userId << "is already available as" << r->id(); operation(r); |