bugfix mdii uploader

This commit is contained in:
hakabahitoyo 2019-02-13 15:46:42 +09:00
parent 0534463cef
commit b7bc666200
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ defmodule Pleroma.Uploaders.MDII 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}}