-
Notifications
You must be signed in to change notification settings - Fork 510
Open
Labels
Needs triageenhancementfeature: api 🛠️OCS API for conversations, chats and participantsOCS API for conversations, chats and participantsfeature: frontend 🖌️"Web UI" client"Web UI" clientfeature: reactions 👍
Milestone
Description
How to use GitHub
- Please use the 👍 reaction to show that you are affected by the same issue.
- Please don't comment if you have no relevant information to add. It's just extra noise for everyone subscribed to this issue.
- Subscribe to receive notifications on status change and new comments.
Steps to reproduce
- Post a message
- Add a reaction
- Remove a reaction
Actual behaviour
POST to api/v1/reaction/{token}/{id}:
"data": {
"\ud83d\udc4d": [
{
"actorType": "users",
"actorId": "antreesy",
"actorDisplayName": "Max Southgate",
"timestamp": 1746019885
}
]
}DELETE to api/v1/reaction/{token}/{id}?reaction=%F0%9F%91%8D:
"data":{}This also triggers GET request to api/v1/reaction/{token}/{id}, as other clients don't know, which and by whom a reaction was removed
GET messages after long polling, or chat loading:
[
{
"id": 576,
"message": "{file}",
"reactions": {
"\ud83d\ude00": 1
},
},
{
"id": 577,
"message": "Reaction deleted by author",
"systemMessage": "reaction_deleted",
"parent": {
"id": 576,
}
},
{
"id": 578,
"message": "You deleted a reaction",
"systemMessage": "reaction_revoked",
"parent": {
"id": 576,
}
}
{
"id": 579,
"message": "\ud83d\ude00", // This is missing on reaction_revoked
"systemMessage": "reaction",
"parent": {
"id": 576,
"reactions": {
"\ud83d\ude00": 1
},
}
}
]Talk app
Talk app version: dev
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Needs triageenhancementfeature: api 🛠️OCS API for conversations, chats and participantsOCS API for conversations, chats and participantsfeature: frontend 🖌️"Web UI" client"Web UI" clientfeature: reactions 👍