Restrict `get_existing_votes` to only get Create activities

This commit is contained in:
rinpatch 2019-06-04 12:42:10 +03:00
parent d977d73b91
commit 29b022bb59
1 changed files with 1 additions and 0 deletions

View File

@ -794,6 +794,7 @@ defmodule Pleroma.Web.ActivityPub.Utils do
query =
from(
[activity, object: object] in Activity.with_preloaded_object(Activity),
where: fragment("(?)->>'type' = 'Create'", activity.data),
where: fragment("(?)->>'actor' = ?", activity.data, ^actor),
where:
fragment(