bugfix mdii uploader

This commit is contained in:
hakabahitoyo 2019-02-13 15:46:42 +09:00
parent 0534463cef
commit b7bc666200

View file

@ -25,7 +25,7 @@ def put_file(upload) do
query = "#{cgi}?#{extension}"
with {:ok, %{status: 200, body: body}} <-
@httpoison.post(query, file_data, adapter: [pool: :default]) do
@httpoison.post(query, file_data, [], adapter: [pool: :default]) do
remote_file_name = String.split(body) |> List.first()
public_url = "#{files}/#{remote_file_name}.#{extension}"
{:ok, {:url, public_url}}