Skip to content

Commit

Permalink
コメント
Browse files Browse the repository at this point in the history
  • Loading branch information
mei23 committed Sep 23, 2023
1 parent 5dabb34 commit 05faabd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/remote/activitypub/models/person.ts
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ function parseSearchableBy(actor: IActor): 'public' | 'none' | null {
// indexableで明示的に拒否されていればnone
if (actor.indexable === false) return 'none';

// searchableByで明示的に拒否されていればnone (followersは未対応なので拒否扱い)
// searchableByでpublic以外ならnone (followersは未対応なので拒否扱い)
if (actor.searchableBy != null) return 'none';

// default
Expand Down

0 comments on commit 05faabd

Please sign in to comment.