mastodon api: relationship view: better handle no pre-existing follow activity

This commit is contained in:
William Pitcock 2018-10-05 23:50:13 +00:00
parent e69faf550c
commit 7f530f6f80
1 changed files with 7 additions and 1 deletions

View File

@ -73,7 +73,13 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
def render("relationship.json", %{user: user, target: target}) do
follow_activity = Pleroma.Web.ActivityPub.Utils.fetch_latest_follow(user, target)
requested = follow_activity.data["state"] == "pending"
requested =
if follow_activity do
follow_activity.data["state"] == "pending"
else
false
end
%{
id: to_string(target.id),