ActivityPub: Show own replies to muted users.

Aligns mute with block behavior.
This commit is contained in:
lain 2020-10-15 12:28:25 +02:00
commit 7a2f100061
2 changed files with 24 additions and 1 deletions

View file

@ -827,7 +827,14 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
query =
from([activity] in query,
where: fragment("not (? = ANY(?))", activity.actor, ^mutes),
where: fragment("not (?->'to' \\?| ?)", activity.data, ^mutes)
where:
fragment(
"not (?->'to' \\?| ?) or ? = ?",
activity.data,
^mutes,
activity.actor,
^user.ap_id
)
)
unless opts[:skip_preload] do