Fix account bio tag text
This commit is contained in:
parent
65b271241c
commit
5da511ad8b
2 changed files with 4 additions and 4 deletions
|
@ -522,8 +522,8 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
|||
|
||||
searchability = :public if %w(public all_users).include?(searchability)
|
||||
searchability = :private if %w(followers followers_only).include?(searchability)
|
||||
searchability = :limited if %w(private reacted_users_only).include?(searchability)
|
||||
searchability = :direct if %w(reactors nobody).include?(searchability)
|
||||
searchability = :direct if %w(reactors reacted_users_only).include?(searchability)
|
||||
searchability = :limited if %w(private nobody).include?(searchability)
|
||||
|
||||
searchability
|
||||
end
|
||||
|
|
|
@ -282,8 +282,8 @@ class ActivityPub::ProcessAccountService < BaseService
|
|||
|
||||
searchability = :public if %w(public all_users).include?(searchability)
|
||||
searchability = :private if %w(followers followers_only).include?(searchability)
|
||||
searchability = :limited if %w(private reacted_users_only).include?(searchability)
|
||||
searchability = :direct if %w(reactors nobody).include?(searchability)
|
||||
searchability = :direct if %w(reactors reacted_users_only).include?(searchability)
|
||||
searchability = :limited if %w(private nobody).include?(searchability)
|
||||
|
||||
searchability
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue