[backend/masto-client] Move Bite from Pleroma to Mastodon

This commit is contained in:
pancakes 2024-10-22 15:01:35 +10:00 committed by Iceshrimp development
parent 4bcfa99a3f
commit 13955e7efe
2 changed files with 1 additions and 1 deletions

View file

@ -36,7 +36,7 @@ public class NotificationEntity : IEntity
NotificationType.Reaction when isPleroma => "pleroma:emoji_reaction", NotificationType.Reaction when isPleroma => "pleroma:emoji_reaction",
NotificationType.Reaction when !isPleroma => "reaction", NotificationType.Reaction when !isPleroma => "reaction",
NotificationType.Bite when isPleroma => "bite", NotificationType.Bite => "bite",
_ => throw new GracefulException($"Unsupported notification type: {type}") _ => throw new GracefulException($"Unsupported notification type: {type}")
}; };