This commit is contained in:
hakabahitoyo 2018-08-23 11:52:18 +09:00
parent e416469a40
commit bf9f68b681
1 changed files with 8 additions and 1 deletions

View File

@ -1116,7 +1116,14 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
data2 =
Enum.slice(data, 0, 40)
|> 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)
conn