diff --git a/src/plugins/sib-reactions.js b/src/plugins/sib-reactions.js
index e6f357071992b5fdf93c3bd1191d736a2f4262b5..47559648b5dbb6d9bff9a05d03631c4cd0e1baee 100644
--- a/src/plugins/sib-reactions.js
+++ b/src/plugins/sib-reactions.js
@@ -180,7 +180,7 @@ converse.plugins.add('sib-reactions', {
         self.appendChild(picker);
 
         picker.addEventListener('emoji-click', function(e) {
-          const emoji = e.detail.emoji.unicode;
+          const emoji = e.detail.unicode;
           const emojis = getUserReactionEmojis(self.model);
 
           // TODO: If it has the reaction from this user already, remove it? (config)
@@ -248,7 +248,7 @@ converse.plugins.add('sib-reactions', {
           el.appendChild(picker);
 
           picker.addEventListener('emoji-click', function(e) {
-            const emoji = e.detail.emoji.unicode;
+            const emoji = e.detail.unicode;
             const emojis = getUserReactionEmojis(el.model);
 
             // TODO: If it has the reaction from this user already, remove it? (config)