1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Merge pull request #4707 from tulir/patch-1

Stop removing variation selector from quick reactions
This commit is contained in:
Michael Telatynski
2020-06-04 17:41:15 +01:00
committed by GitHub

View File

@@ -27,8 +27,7 @@ const QUICK_REACTIONS = ["👍", "👎", "😄", "🎉", "😕", "❤️", "🚀
if (!data) { if (!data) {
throw new Error(`Emoji ${emoji} doesn't exist in emojibase`); throw new Error(`Emoji ${emoji} doesn't exist in emojibase`);
} }
// Prefer our unicode value for quick reactions as we sometimes use variation selectors. return data;
return Object.assign({}, data, { unicode: emoji });
}); });
class QuickReactions extends React.Component { class QuickReactions extends React.Component {