forked from AkkomaGang/akkoma
ObjectValidator: Clarify type of object.
This commit is contained in:
parent
adc199c6a8
commit
aee815b478
1 changed files with 5 additions and 5 deletions
|
@ -24,13 +24,13 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidator do
|
|||
@spec validate(map(), keyword()) :: {:ok, map(), keyword()} | {:error, any()}
|
||||
def validate(object, meta)
|
||||
|
||||
def validate(%{"type" => "Update"} = object, meta) do
|
||||
with {:ok, object} <-
|
||||
object
|
||||
def validate(%{"type" => "Update"} = update_activity, meta) do
|
||||
with {:ok, update_activity} <-
|
||||
update_activity
|
||||
|> UpdateValidator.cast_and_validate()
|
||||
|> Ecto.Changeset.apply_action(:insert) do
|
||||
object = stringify_keys(object)
|
||||
{:ok, object, meta}
|
||||
update_activity = stringify_keys(update_activity)
|
||||
{:ok, update_activity, meta}
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue