change move sql query
This commit is contained in:
parent
4489701855
commit
cce58503e4
|
@ -55,9 +55,8 @@ export default async (actor: CacheableRemoteUser, activity: IMove): Promise<stri
|
||||||
|
|
||||||
old_acc.movedToUri = new_acc.uri;
|
old_acc.movedToUri = new_acc.uri;
|
||||||
|
|
||||||
const query = makePaginationQuery(Followings.createQueryBuilder('following'))
|
const query = Followings.createQueryBuilder('following')
|
||||||
.andWhere('following.followeeId = :userId', { userId: old_acc.id })
|
.where('following.followeeId = :userId', { userId: old_acc.id });
|
||||||
.innerJoinAndSelect('following.follower', 'follower');
|
|
||||||
|
|
||||||
const followings = await query
|
const followings = await query
|
||||||
.getMany();
|
.getMany();
|
||||||
|
|
Loading…
Reference in New Issue