aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/uploaders/mdii.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/uploaders/mdii.ex b/lib/pleroma/uploaders/mdii.ex
index c5deaf73f..f1f996fca 100644
--- a/lib/pleroma/uploaders/mdii.ex
+++ b/lib/pleroma/uploaders/mdii.ex
@@ -12,10 +12,10 @@ defmodule Pleroma.Uploaders.Mdii do
File.rm!(path)
extension = Regex.replace(~r/^image\//, content_type, "")
- query = "https://#{host_name}/mdii.cgi?#{extension}"
+ query = "https://#{host_name}/mdii-post.cgi?#{extension}"
with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do
- remote_file_name = body
+ remote_file_name = List.first(String.split(body))
public_url = "https://#{host_name}/#{remote_file_name}.#{extension}"
{:ok, public_url}
end