diff options
author | feld <feld@feld.me> | 2024-09-06 13:27:06 +0000 |
---|---|---|
committer | feld <feld@feld.me> | 2024-09-06 13:27:06 +0000 |
commit | 2c916ccd89ee6d0f4dbf05d39374f0c27237d5d7 (patch) | |
tree | e98d505905285c52aba3d82ba8eb9995ca2af2a0 /lib | |
parent | 25db1a5d671e64e18af2d49e397438213419aef6 (diff) | |
parent | 5f573b4095ade584a590b756c83f13f89336cd04 (diff) | |
download | pleroma-2c916ccd89ee6d0f4dbf05d39374f0c27237d5d7.tar.gz pleroma-2c916ccd89ee6d0f4dbf05d39374f0c27237d5d7.zip |
Merge branch 'following-state-bug' into 'develop'
Fix Following status bug
See merge request pleroma/pleroma!4251
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/mastodon_api/views/account_view.ex | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/pleroma/web/mastodon_api/views/account_view.ex b/lib/pleroma/web/mastodon_api/views/account_view.ex index 6976ca6e5..298c73986 100644 --- a/lib/pleroma/web/mastodon_api/views/account_view.ex +++ b/lib/pleroma/web/mastodon_api/views/account_view.ex @@ -92,14 +92,13 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do User.get_follow_state(reading_user, target) end - followed_by = - if following_relationships do - case FollowingRelationship.find(following_relationships, target, reading_user) do - %{state: :follow_accept} -> true - _ -> false - end - else - User.following?(target, reading_user) + followed_by = FollowingRelationship.following?(target, reading_user) + following = FollowingRelationship.following?(reading_user, target) + + requested = + cond do + following -> false + true -> match?(:follow_pending, follow_state) end subscribing = @@ -114,7 +113,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do # NOTE: adjust UserRelationship.view_relationships_option/2 on new relation-related flags %{ id: to_string(target.id), - following: follow_state == :follow_accept, + following: following, followed_by: followed_by, blocking: UserRelationship.exists?( @@ -150,7 +149,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountView do ), subscribing: subscribing, notifying: subscribing, - requested: follow_state == :follow_pending, + requested: requested, domain_blocking: User.blocks_domain?(reading_user, target), showing_reblogs: not UserRelationship.exists?( |