@@ -254,6 +287,8 @@ class Notification extends ImmutablePureComponent {
return this.renderReblog(notification, link);
case 'poll':
return this.renderPoll(notification);
+ case 'pleroma:emoji_reaction':
+ return this.renderEmojiReact(notification, link);
}
return null;
diff --git a/app/gabsocial/reducers/notifications.js b/app/gabsocial/reducers/notifications.js
index 4b2267e5a..81db680c6 100644
--- a/app/gabsocial/reducers/notifications.js
+++ b/app/gabsocial/reducers/notifications.js
@@ -41,6 +41,7 @@ const notificationToMap = notification => ImmutableMap({
account: notification.account.id,
created_at: notification.created_at,
status: notification.status ? notification.status.id : null,
+ emoji: notification.emoji,
});
const normalizeNotification = (state, notification) => {