From: William Pitcock Date: Fri, 5 Oct 2018 23:50:13 +0000 (+0000) Subject: mastodon api: relationship view: better handle no pre-existing follow activity X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=7f530f6f8084b899b2fff40c074602e90d5fa35f;p=akkoma mastodon api: relationship view: better handle no pre-existing follow activity --- diff --git a/lib/pleroma/web/mastodon_api/views/account_view.ex b/lib/pleroma/web/mastodon_api/views/account_view.ex index d4d8ee2a5..b68845e16 100644 --- a/lib/pleroma/web/mastodon_api/views/account_view.ex +++ b/lib/pleroma/web/mastodon_api/views/account_view.ex @@ -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),