diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-11-21 07:06:37 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-11-21 07:06:37 +0100 |
commit | e7d4aec6ecf65ad970c341e30949218e4472944a (patch) | |
tree | 32d1e0e03eb9f56ec0cc9d420cb3c64b6f3c3ebb /src/CacheStructs.h | |
parent | Mark rooms as direct chats (diff) | |
download | nheko-e7d4aec6ecf65ad970c341e30949218e4472944a.tar.xz |
Only mark as direct, if invite was direct
Diffstat (limited to 'src/CacheStructs.h')
-rw-r--r-- | src/CacheStructs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CacheStructs.h b/src/CacheStructs.h index e28f5b2d..01a050da 100644 --- a/src/CacheStructs.h +++ b/src/CacheStructs.h @@ -26,6 +26,7 @@ struct RoomMember { QString user_id; QString display_name; + bool is_direct = false; }; //! Used to uniquely identify a list of read receipts. @@ -98,6 +99,7 @@ struct MemberInfo { std::string name; std::string avatar_url; + bool is_direct = false; }; void |