diff --git a/src/m2d/actions/add-reaction.js b/src/m2d/actions/add-reaction.js index 6eb12e0..1a9f05c 100644 --- a/src/m2d/actions/add-reaction.js +++ b/src/m2d/actions/add-reaction.js @@ -31,6 +31,10 @@ async function addReaction(event) { // not adding it to the database otherwise a m->d removal would try calling the API return } + if (e.message?.includes("Unknown Emoji")) { + // happens if a matrix user tries to add on to a super reaction + return + } throw e }