diff options
author | hakabahitoyo <hakabahitoyo@example.com> | 2018-11-16 20:22:36 +0900 |
---|---|---|
committer | hakabahitoyo <hakabahitoyo@example.com> | 2018-11-16 20:22:36 +0900 |
commit | 52224de39fe757077448853a7e1546c0f01509af (patch) | |
tree | 41022302a26ee5ce5cfb20dc7c3d7ffb4f755a2d /lib | |
parent | 4fbfacf5e129ad3f60e67f5ade2489f4bae48f56 (diff) | |
download | pleroma-52224de39fe757077448853a7e1546c0f01509af.tar.gz |
better extension detection
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/uploaders/mdii.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/uploaders/mdii.ex b/lib/pleroma/uploaders/mdii.ex index f1f996fca..71f3d1be7 100644 --- a/lib/pleroma/uploaders/mdii.ex +++ b/lib/pleroma/uploaders/mdii.ex @@ -11,11 +11,11 @@ defmodule Pleroma.Uploaders.Mdii do File.rm!(path) - extension = Regex.replace(~r/^image\//, content_type, "") + extension = String.split(name, ".") |> List.last() query = "https://#{host_name}/mdii-post.cgi?#{extension}" with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do - remote_file_name = List.first(String.split(body)) + remote_file_name = String.split(body) |> List.first() public_url = "https://#{host_name}/#{remote_file_name}.#{extension}" {:ok, public_url} end |