Browse Source

Merge branch 'bugfix/903-mastoapi-relationship-requested' into 'develop'

MastoAPI account_view.ex: requested is false when following is true

Closes #903

See merge request pleroma/pleroma!1169
tags/v1.1.4
lambda 5 years ago
parent
commit
1dcdcd8871
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/pleroma/web/mastodon_api/views/account_view.ex

+ 1
- 1
lib/pleroma/web/mastodon_api/views/account_view.ex View File

@@ -40,7 +40,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do
follow_activity = Pleroma.Web.ActivityPub.Utils.fetch_latest_follow(user, target)

requested =
if follow_activity do
if follow_activity && !User.following?(target, user) do
follow_activity.data["state"] == "pending"
else
false


Loading…
Cancel
Save