Add `with_body: true` to requests relying on `max_body: val`

This commit is contained in:
Roman Chvanikov 2019-04-12 00:16:15 +07:00
parent 4977e96fa4
commit 4615e56219
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,8 @@ defmodule Pleroma.Web.RelMe do
@hackney_options [
pool: :media,
recv_timeout: 2_000,
max_body: 2_000_000
max_body: 2_000_000,
with_body: true
]
if Mix.env() == :test do

View File

@ -12,7 +12,8 @@ defmodule Pleroma.Web.RichMedia.Parser do
@hackney_options [
pool: :media,
recv_timeout: 2_000,
max_body: 2_000_000
max_body: 2_000_000,
with_body: true
]
def parse(nil), do: {:error, "No URL provided"}