Fix reaction not active
Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
parent
5d380453a4
commit
1df4d32d69
1 changed files with 1 additions and 1 deletions
|
@ -333,7 +333,7 @@ function MessageReactionGroup({ roomTimeline, mEvent }) {
|
||||||
} else {
|
} else {
|
||||||
reaction.users.push(senderId);
|
reaction.users.push(senderId);
|
||||||
reaction.count = reaction.users.length;
|
reaction.count = reaction.users.length;
|
||||||
reaction.isActive = isActive;
|
if (isActive) reaction.isActive = isActive;
|
||||||
}
|
}
|
||||||
|
|
||||||
reactions[key] = reaction;
|
reactions[key] = reaction;
|
||||||
|
|
Loading…
Reference in a new issue