avoid mix format bug

This commit is contained in:
Hakaba Hitoyo 2018-12-06 18:41:29 +09:00
parent 96ba95df2e
commit a09ed0f5af
2 changed files with 2 additions and 2 deletions

View File

@ -765,7 +765,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
{:ok, %{body: body, status: code}} when code in 200..299 <-
@httpoison.get(
id,
Accept: "application/activity+json"
[{:Accept, "application/activity+json"}]
),
{:ok, data} <- Jason.decode(body),
:ok <- Transmogrifier.contain_origin_from_id(id, data) do

View File

@ -349,7 +349,7 @@ defmodule Pleroma.Web.OStatus do
{:ok, %{body: body, status: code}} when code in 200..299 <-
@httpoison.get(
url,
Accept: "application/atom+xml"
[{:Accept, "application/atom+xml"}]
) do
Logger.debug("Got document from #{url}, handling...")
handle_incoming(body)