[Bug] custom emoji reaction popover gets confused when two reactions have the same key #80
Labels
No labels
a11y
Bug
Bug fix
Critical Priority
Documentation
Feature
Feature request
Held for next release cycle
High Priority
Low Priority
Medium Priority
Minor change
Translation/Locale
WIP
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: AkkomaGang/akkoma-fe#80
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
custom emoji are uniq'd on the backend via their URL (since instances may use the same key for different emoji), but the list of "who reacted" in the frontend gets confused when this happens, and assigns the same set of reactors to both popovers
so if
user_a@first
reacted with:maid_nod: (url: first/somewhere)
, anduser_b@second
reacted with:main_nod: (url: second/somewhere)
, the frontend popover showsuser_a@first
as having reacted with boththis is likely just due to the way the FE filters the
/reactions
output - we should filter it by image URL instead