Parse followers audience from followers URI (#7112)

* add followersUri

* add followersUri to audience parse

* fetch followersUri

* followersUri db migration

* update followersUri

* Rename 1611354329133-followersUri to 1611354329133-followersUri.ts

* typo

* Update person.ts

* create/update person consistency

* Update audience.ts

* missing paren

* tabs

* use strict equality

* Update audience.ts
This commit is contained in:
InspectorCaracal
2021-02-05 19:50:33 -07:00
committed by GitHub
parent c88902e640
commit 885f8e1856
4 changed files with 27 additions and 4 deletions

View File

@@ -86,8 +86,7 @@ function isPublic(id: string) {
}
function isFollowers(id: string, actor: IRemoteUser) {
return [
`${actor.uri}/followers`,
// actor.followerUri, // TODO
].includes(id);
return (
id === (actor.followersUri || `${actor.uri}/followers`)
);
}