Apply suggestion to lib/pleroma/object/fetcher.ex

develop
rinpatch 2019-07-20 18:53:00 +00:00
parent d4ee76ab63
commit c3ecaea64d
1 changed files with 2 additions and 1 deletions

View File

@ -97,7 +97,8 @@ defmodule Pleroma.Object.Fetcher do
end
end
def fetch_and_contain_remote_object_from_id(_id) do
def fetch_and_contain_remote_object_from_id(%{"id" => id), do: fetch_and_contain_remote_object_from_id(id)
def fetch_and_contain_remote_object_from_id(_id), do: {:error, "id must be a string"}
{:error, "id must be a string"}
end
end