maybe pls

This commit is contained in:
cutestnekoaqua 2022-12-08 20:02:55 +01:00
parent 964fdefdae
commit ddc477438a

View file

@ -55,10 +55,8 @@ export default async (actor: CacheableRemoteUser, activity: IMove): Promise<stri
old.movedToUri = new_acc.uri;
const query = Followings.createQueryBuilder('following')
.where('following.followeeId = :userId', { userId: old.id });
const followings = await query
const followings = await Followings.createQueryBuilder('following').select('*')
.where('following.followeeId = :userId', { userId: old.id })
.getMany();
followings.forEach(async following => {