diff options
author | Sergey Suprunenko <suprunenko.s@gmail.com> | 2019-07-28 20:24:39 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2019-07-28 22:50:47 +0000 |
commit | 2b38961bf6f7eee88336a4a9b08cc650d668886d (patch) | |
tree | 12e2eb3a902ad027741a708552b353b779b7e388 | |
parent | 99989758ff8ca90d24e7d89de232062777acb550 (diff) | |
download | pleroma-2b38961bf6f7eee88336a4a9b08cc650d668886d.tar.gz |
Handle 303 redirects
-rw-r--r-- | lib/pleroma/http/connection.ex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pleroma/http/connection.ex b/lib/pleroma/http/connection.ex index a1460d303..7e2c6f5e8 100644 --- a/lib/pleroma/http/connection.ex +++ b/lib/pleroma/http/connection.ex @@ -11,6 +11,7 @@ defmodule Pleroma.HTTP.Connection do connect_timeout: 10_000, recv_timeout: 20_000, follow_redirect: true, + force_redirect: true, pool: :federation ] @adapter Application.get_env(:tesla, :adapter) |