This commit is contained in:
hakabahitoyo 2018-11-15 16:08:55 +09:00
parent 8e707aba29
commit 4fbfacf5e1
1 changed files with 2 additions and 2 deletions

View File

@ -12,10 +12,10 @@ def put_file(name, uuid, path, content_type, _should_dedupe) 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