Change followees_only to following_only

This commit is contained in:
KMY 2023-09-13 12:59:07 +09:00
parent 1cbd000b43
commit 04418d5b01
8 changed files with 8 additions and 8 deletions

View file

@ -411,7 +411,7 @@ class StatusActionBar extends ImmutablePureComponent {
);
const emojiReactionPolicy = account.getIn(['other_settings', 'emoji_reaction_policy']) || 'allow';
const following = emojiReactionPolicy !== 'followees_only' || (relationship && relationship.get('following'));
const following = emojiReactionPolicy !== 'following_only' || (relationship && relationship.get('following'));
const followed = emojiReactionPolicy !== 'followers_only' || (relationship && relationship.get('followed_by'));
const mutual = emojiReactionPolicy !== 'mutuals_only' || (relationship && relationship.get('following') && relationship.get('followed_by'));
const outside = emojiReactionPolicy !== 'outside_only' || (relationship && (relationship.get('following') || relationship.get('followed_by')));