maybe pls
This commit is contained in:
parent
964fdefdae
commit
ddc477438a
|
@ -55,10 +55,8 @@ export default async (actor: CacheableRemoteUser, activity: IMove): Promise<stri
|
||||||
|
|
||||||
old.movedToUri = new_acc.uri;
|
old.movedToUri = new_acc.uri;
|
||||||
|
|
||||||
const query = Followings.createQueryBuilder('following')
|
const followings = await Followings.createQueryBuilder('following').select('*')
|
||||||
.where('following.followeeId = :userId', { userId: old.id });
|
.where('following.followeeId = :userId', { userId: old.id })
|
||||||
|
|
||||||
const followings = await query
|
|
||||||
.getMany();
|
.getMany();
|
||||||
|
|
||||||
followings.forEach(async following => {
|
followings.forEach(async following => {
|
||||||
|
|
Loading…
Reference in New Issue