mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Don't treat a space as a direct chat
This commit is contained in:
parent
4e5e5d55eb
commit
3bb00aa96c
1 changed files with 2 additions and 1 deletions
|
@ -1241,7 +1241,8 @@ ChatPage::startChat(QString userid, std::optional<bool> encryptionEnabled)
|
|||
auto room_infos = cache::getRoomInfo(joined_rooms);
|
||||
|
||||
for (const std::string &room_id : joined_rooms) {
|
||||
if (room_infos[QString::fromStdString(room_id)].member_count == 2) {
|
||||
if (const auto &info = room_infos[QString::fromStdString(room_id)];
|
||||
info.member_count == 2 && !info.is_space) {
|
||||
auto room_members = cache::roomMembers(room_id);
|
||||
if (std::find(room_members.begin(), room_members.end(), (userid).toStdString()) !=
|
||||
room_members.end()) {
|
||||
|
|
Loading…
Reference in a new issue