1
0
Fork 0
forked from gitea/nas

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

@ -377,7 +377,7 @@ class Account < ApplicationRecord
case emoji_reaction_policy
when :block
false
when :followees_only
when :following_only
account.present? && (id == account.id || following?(account))
when :followers_only
account.present? && (id == account.id || followed_by?(account))