forked from AkkomaGang/akkoma
parent
b2e163ec57
commit
ce6d64bbd8
1 changed files with 7 additions and 2 deletions
|
@ -737,8 +737,13 @@ defp restrict_muted_reblogs(query, %{"muting_user" => %User{info: info}}) do
|
||||||
|
|
||||||
from(
|
from(
|
||||||
activity in query,
|
activity in query,
|
||||||
where: fragment("not ?->>'type' = 'Announce'", activity.data),
|
where:
|
||||||
where: fragment("not ? = ANY(?)", activity.actor, ^muted_reblogs)
|
fragment(
|
||||||
|
"not ( ?->>'type' = 'Announce' and ? = ANY(?))",
|
||||||
|
activity.data,
|
||||||
|
activity.actor,
|
||||||
|
^muted_reblogs
|
||||||
|
)
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue