forked from AkkomaGang/akkoma
format
This commit is contained in:
parent
ebe658c169
commit
8e707aba29
2 changed files with 3 additions and 5 deletions
|
@ -23,8 +23,7 @@
|
|||
public_endpoint: "https://s3.amazonaws.com",
|
||||
force_media_proxy: false
|
||||
|
||||
config :pleroma, Pleroma.Uploaders.Mdii,
|
||||
host_name: "mdii.sakura.ne.jp"
|
||||
config :pleroma, Pleroma.Uploaders.Mdii, host_name: "mdii.sakura.ne.jp"
|
||||
|
||||
config :pleroma, :emoji, shortcode_globs: ["/emoji/custom/**/*.png"]
|
||||
|
||||
|
|
|
@ -14,8 +14,7 @@ def put_file(name, uuid, path, content_type, _should_dedupe) do
|
|||
extension = Regex.replace(~r/^image\//, content_type, "")
|
||||
query = "https://#{host_name}/mdii.cgi?#{extension}"
|
||||
|
||||
with {:ok, %{status_code: 200, body: body}} <-
|
||||
@httpoison.post(query, file_data) do
|
||||
with {:ok, %{status_code: 200, body: body}} <- @httpoison.post(query, file_data) do
|
||||
remote_file_name = body
|
||||
public_url = "https://#{host_name}/#{remote_file_name}.#{extension}"
|
||||
{:ok, public_url}
|
||||
|
|
Loading…
Reference in a new issue