Suppress error when adding to a super reaction

This commit is contained in:
Cadence Ember
2025-06-04 11:31:22 +12:00
parent 8d4d505ab9
commit c50d238552

View File

@@ -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
}