Fix activitypub HTTPoison issue
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
164dca8562
commit
39ae24edb8
|
@ -806,8 +806,8 @@ defmodule Mobilizon.Federation.ActivityPub do
|
|||
Logger.debug(inspect(url))
|
||||
|
||||
res =
|
||||
with %HTTPoison.Response{status_code: 200, body: body} <-
|
||||
HTTPoison.get!(url, [Accept: "application/activity+json"],
|
||||
with {:ok, %HTTPoison.Response{status_code: 200, body: body}} <-
|
||||
HTTPoison.get(url, [Accept: "application/activity+json"],
|
||||
follow_redirect: true,
|
||||
ssl: [{:versions, [:"tlsv1.2"]}]
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue