diff --git a/lib/pleroma/uploaders/mdii.ex b/lib/pleroma/uploaders/mdii.ex index f21a7e1e2..0f68b0805 100644 --- a/lib/pleroma/uploaders/mdii.ex +++ b/lib/pleroma/uploaders/mdii.ex @@ -15,7 +15,7 @@ def put_file(name, uuid, path, content_type, _should_dedupe) do query = "https://#{host_name}/mdii.cgi?#{extension}" with {:ok, %{status_code: 200, body: body}} <- - @httpoison.get(url, file_data) do + @httpoison.post(query, file_data) do remote_file_name = body public_url = "https://#{host_name}/#{remote_file_name}.#{extension}" {:ok, public_url}