diff options
author | lain <lain@soykaf.club> | 2020-10-22 12:22:08 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-10-22 12:22:08 +0200 |
commit | 8d251096fe71d289cf6a50f3d5638fb43b07c24a (patch) | |
tree | 4a7b10347df1be3136c251bd03e96898841082ce /lib | |
parent | 77e827bb66ca42b11795133563b0d805c843fb56 (diff) | |
download | pleroma-8d251096fe71d289cf6a50f3d5638fb43b07c24a.tar.gz |
SideEffects: Correctly handle chat messages sent to yourself
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/activity_pub/side_effects.ex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pleroma/web/activity_pub/side_effects.ex b/lib/pleroma/web/activity_pub/side_effects.ex index d421ca7af..0fff5faf2 100644 --- a/lib/pleroma/web/activity_pub/side_effects.ex +++ b/lib/pleroma/web/activity_pub/side_effects.ex @@ -306,6 +306,7 @@ defmodule Pleroma.Web.ActivityPub.SideEffects do streamables = [[actor, recipient], [recipient, actor]] + |> Enum.uniq() |> Enum.map(fn [user, other_user] -> if user.local do {:ok, chat} = Chat.bump_or_create(user.id, other_user.ap_id) |