diff --git a/Iceshrimp.Backend/Controllers/Mastodon/Schemas/Entities/NotificationEntity.cs b/Iceshrimp.Backend/Controllers/Mastodon/Schemas/Entities/NotificationEntity.cs index a148c527..72ee6beb 100644 --- a/Iceshrimp.Backend/Controllers/Mastodon/Schemas/Entities/NotificationEntity.cs +++ b/Iceshrimp.Backend/Controllers/Mastodon/Schemas/Entities/NotificationEntity.cs @@ -25,12 +25,14 @@ public class NotificationEntity : IEntity NotificationType.Mention => "mention", NotificationType.Reply => "mention", NotificationType.Renote => "reblog", - NotificationType.Quote => "status", NotificationType.Like => "favourite", NotificationType.PollEnded => "poll", NotificationType.FollowRequestReceived => "follow_request", NotificationType.Edit => "update", + NotificationType.Quote when isPleroma => "mention", + NotificationType.Quote when !isPleroma => "status", + NotificationType.Reaction when isPleroma => "pleroma:emoji_reaction", NotificationType.Reaction when !isPleroma => "reaction",