Merge commit '39b22ba91b
' into kb_migration
This commit is contained in:
commit
06f0656a7b
9 changed files with 58 additions and 38 deletions
|
@ -246,9 +246,9 @@ class ActivityPub::ProcessAccountService < BaseService
|
|||
if audience_searchable_by.any? { |uri| ActivityPub::TagManager.instance.public_collection?(uri) }
|
||||
:public
|
||||
elsif audience_searchable_by.include?(@account.followers_url)
|
||||
:unlisted # Followers only in kmyblue (generics: private)
|
||||
:private # Followers only in kmyblue (generics: private)
|
||||
else
|
||||
:private # Reaction only in kmyblue (generics: direct)
|
||||
:direct # Reaction only in kmyblue (generics: direct)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -234,7 +234,7 @@ class FanOutOnWriteService < BaseService
|
|||
end
|
||||
|
||||
def broadcastable?
|
||||
@status.public_visibility? && !@status.reblog? && !@account.silenced?
|
||||
(@status.public_visibility? || @status.login_visibility?) && !@status.reblog? && !@account.silenced?
|
||||
end
|
||||
|
||||
def broadcastable_unlisted?
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue