Bläddra i källkod

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

tags/v1.1.4
rinpatch 5 år sedan
förälder
incheckning
c3ecaea64d
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. +2
    -1
      lib/pleroma/object/fetcher.ex

+ 2
- 1
lib/pleroma/object/fetcher.ex Visa fil

@@ -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

Laddar…
Avbryt
Spara