This commit is contained in:
hakabahitoyo 2018-08-23 11:52:18 +09:00
parent e416469a40
commit bf9f68b681

View file

@ -1116,7 +1116,14 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
data2 = data2 =
Enum.slice(data, 0, 40) Enum.slice(data, 0, 40)
|> Enum.map(fn x -> |> Enum.map(fn x ->
Map.put(x, "id", User.get_or_fetch(x["acct"]).id) Map.put(
x,
"id",
case User.get_or_fetch(x["acct"]) do
%{id: id} -> id
_ -> 0
end
)
end) end)
conn conn