Use for-of instead of map

return values are not being used
This commit is contained in:
Aya Morisawa
2018-11-30 23:30:28 +09:00
parent 9ef641b403
commit 3db414add4
3 changed files with 7 additions and 7 deletions

View File

@@ -117,14 +117,14 @@ async function CreateRemoteInboxes(user: ILocalUser): Promise<string[]> {
const queue: string[] = [];
followers.map(following => {
for (const following of followers) {
const follower = following._follower;
if (isRemoteUser(follower)) {
const inbox = follower.sharedInbox || follower.inbox;
if (!queue.includes(inbox)) queue.push(inbox);
}
});
}
return queue;
}