diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-03-29 13:26:36 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-03-30 16:19:32 +0900 |
commit | a28892ca3b40a32556ee7615116c322f6b2a4ae5 (patch) | |
tree | 2e666bb9e997a77b0dee03a315181420f0a61048 /lib/user.h | |
parent | 01c5a35398a55dfc4a30e466aeb13419387555d3 (diff) | |
download | libquotient-a28892ca3b40a32556ee7615116c322f6b2a4ae5.tar.gz libquotient-a28892ca3b40a32556ee7615116c322f6b2a4ae5.zip |
Room::processStateEvent, User: take the previous membership state from oldStateEvent
memberJoinState() just happens to return the not-yet-updated state,
making its use around state changes very sensitive to moving things
around. The event's own prevContent is unsigned, therefore untrusted.
Diffstat (limited to 'lib/user.h')
-rw-r--r-- | lib/user.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -105,7 +105,11 @@ namespace QMatrixClient QString avatarMediaId(const Room* room = nullptr) const; QUrl avatarUrl(const Room* room = nullptr) const; - void processEvent(const RoomMemberEvent& event, const Room* r); + /// This method is for internal use and should not be called + /// from client code + // FIXME: Move it away to private in lib 0.6 + void processEvent(const RoomMemberEvent& event, const Room* r, + bool firstMention); public slots: /** Set a new name in the global user profile */ |