Normalize the object only after ensuring the activity type is Create

This commit is contained in:
rinpatch 2019-05-12 03:01:42 +03:00
parent 131f883207
commit b9f84a382a
1 changed files with 1 additions and 1 deletions

View File

@ -47,8 +47,8 @@ defmodule Pleroma.Conversation do
"""
def create_or_bump_for(activity) do
with true <- Pleroma.Web.ActivityPub.Visibility.is_direct?(activity),
object <- Pleroma.Object.normalize(activity),
"Create" <- activity.data["type"],
object <- Pleroma.Object.normalize(activity),
"Note" <- object.data["type"],
ap_id when is_binary(ap_id) and byte_size(ap_id) > 0 <- object.data["context"] do
{:ok, conversation} = create_for_ap_id(ap_id)