Merge branch '2239-mute-fixes' into 'develop'
ActivityPub: Show own replies to muted users. Closes #2239 See merge request pleroma/pleroma!3084
This commit is contained in:
commit
0495a07dc7
2 changed files with 24 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue