1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-16 23:50:40 +01:00

Fix missing announces in MastoAPI home timeline

Closes #762
This commit is contained in:
rinpatch 2019-03-27 12:28:53 +03:00
parent b2e163ec57
commit ce6d64bbd8

View File

@ -737,8 +737,13 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
from(
activity in query,
where: fragment("not ?->>'type' = 'Announce'", activity.data),
where: fragment("not ? = ANY(?)", activity.actor, ^muted_reblogs)
where:
fragment(
"not ( ?->>'type' = 'Announce' and ? = ANY(?))",
activity.data,
activity.actor,
^muted_reblogs
)
)
end