use for of

This commit is contained in:
syuilo 2023-04-08 20:03:32 +09:00
parent a7455035c5
commit ad9f72291f
1 changed files with 4 additions and 4 deletions

View File

@ -771,17 +771,17 @@ export class ApInboxService {
where: {
followeeId: old_acc.id,
followerHost: IsNull(), // follower is local
}
},
});
followings.forEach(async (following) => {
if (!following.follower) return;
for (const following of followings) {
if (!following.follower) continue;
try {
await this.userFollowingService.follow(following.follower, new_acc);
await this.userFollowingService.unfollow(following.follower, old_acc);
} catch {
/* empty */
}
});
}
return 'ok';
}