diff options
author | hakabahitoyo <hakabahitoyo@example.com> | 2018-08-23 11:52:18 +0900 |
---|---|---|
committer | hakabahitoyo <hakabahitoyo@example.com> | 2018-08-23 11:52:18 +0900 |
commit | bf9f68b68142453ee0a30829134285dff11af039 (patch) | |
tree | 3cfc50636cf7afec2c36a7bba6e7eedbf1701cab /lib | |
parent | e416469a409e6ff4bea84da40a5af43fe532a2ce (diff) | |
download | pleroma-bf9f68b68142453ee0a30829134285dff11af039.tar.gz |
debug
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/mastodon_api/mastodon_api_controller.ex | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex index e89cd63a2..f482de6fd 100644 --- a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex +++ b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex @@ -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 |