1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00

Add ability to view my followers

This commit is contained in:
Chocobozzz 2021-10-19 09:44:43 +02:00
parent 9593a78ae1
commit 4beda9e12a
No known key found for this signature in database
GPG key ID: 583A612D890159BE
47 changed files with 799 additions and 248 deletions

View file

@ -95,7 +95,7 @@ async function areSubscriptionsExist (req: express.Request, res: express.Respons
return { name, host, uri: u }
})
const results = await ActorFollowModel.listSubscribedIn(user.Account.Actor.id, handles)
const results = await ActorFollowModel.listSubscriptionsOf(user.Account.Actor.id, handles)
const existObject: { [id: string ]: boolean } = {}
for (const handle of handles) {