Synchronize reaction notification text with PleromaFE's style

This commit is contained in:
Mark Felder 2020-11-17 19:51:37 +00:00
parent 5d0bc5e028
commit 499faa82f6
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ defmodule Pleroma.Web.Push.Impl do
_object,
_mastodon_type
) do
"@#{actor.nickname} has reacted with #{content}"
"@#{actor.nickname} reacted with #{content}"
end
def format_body(

View File

@ -196,7 +196,7 @@ defmodule Pleroma.Web.Push.ImplTest do
object = Object.normalize(activity)
assert Impl.format_body(%{activity: activity, type: "pleroma:emoji_reaction"}, user, object) ==
"@Bob has reacted with 👍"
"@Bob reacted with 👍"
assert Impl.format_title(%{activity: activity, type: "pleroma:emoji_reaction"}) ==
"New Reaction"