Skip to content
Snippets Groups Projects
Commit 4fbfacf5 authored by hakabahitoyo's avatar hakabahitoyo
Browse files

debug

parent 8e707aba
Branches
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment