Don't store RoomMembers in ReactionModel

Don't store RoomMember objects in the reaction model just grab them everytime incase the state event is replaced.
This commit is contained in:
James Graham
2024-05-12 13:13:02 +00:00
committed by Tobias Fella
parent 408f0a12e2
commit feec7ca408
2 changed files with 6 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ public:
*/
struct Reaction {
QString reaction; /**< The reaction emoji. */
QList<Quotient::RoomMember> authors; /**< The list of authors who sent the given reaction. */
QStringList authors; /**< The list of authors who sent the given reaction. */
};
/**