Apply suggestion to lib/pleroma/web/activity_pub/object_validator.ex

This commit is contained in:
lain 2020-03-26 14:23:19 +00:00
parent f316882464
commit d7aa0b645b
1 changed files with 1 additions and 2 deletions

View File

@ -26,8 +26,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidator do
def stringify_keys(object) do
object
|> Enum.map(fn {key, val} -> {to_string(key), val} end)
|> Enum.into(%{})
|> Map.new(fn {key, val} -> {to_string(key), val} end)
end
def fetch_actor_and_object(object) do