Treat the manifest path as a file if it doesn't start with http

Bu işleme şunda yer alıyor:
Ekaterina Vaartis 2019-04-18 20:06:59 +03:00
ebeveyn aaaa428512
işleme 98d4b3de53

Dosyayı Görüntüle

@ -231,7 +231,13 @@ defmodule Mix.Tasks.Pleroma.Emoji do
end
defp fetch_manifest(from) do
Tesla.get!(from).body |> Poison.decode!()
Poison.decode!(
if String.starts_with?(from, "http") do
Tesla.get!(from).body
else
File.read!(from)
end
)
end
defp parse_global_opts(args) do