diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/user.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 6f8e39f74..fca490cb1 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -472,7 +472,7 @@ defmodule Pleroma.User do # ensure that the actor who published the announced object appears only once to = if actor.nickname != nil do - (to ++ [object.data["actor"]]) + to ++ [object.data["actor"]] else to end |