mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 02:05:12 +00:00
Treat the manifest path as a file if it doesn't start with http
This commit is contained in:
parent
aaaa428512
commit
98d4b3de53
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue