activitypub transmogrifier: handle hubzilla AP actor quirks

This commit is contained in:
William Pitcock 2018-05-19 07:30:02 +00:00
parent 4d2c6707c2
commit 2051530868
2 changed files with 15 additions and 0 deletions

View File

@ -401,6 +401,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
"url" => [%{"href" => data["image"]["url"]}]
}
data = Transmogrifier.maybe_fix_user_object(data)
user_data = %{
ap_id: data["id"],
info: %{

View File

@ -495,4 +495,17 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
Repo.delete_all(q)
end
end
def maybe_fix_user_url(data) do
if is_map(data["url"]) do
data = Map.put(data, "url", data["url"]["href"])
end
data
end
def maybe_fix_user_object(data) do
data
|> maybe_fix_user_url
end
end