mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 12:36:57 +00:00
fix typo in QueryService.generateBlockQueryForUsers
This commit is contained in:
parent
68b84b28dd
commit
5e7d0e9acc
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ export class QueryService {
|
|||
@bindThis
|
||||
public generateBlockQueryForUsers<E extends ObjectLiteral>(q: SelectQueryBuilder<E>, me: { id: MiUser['id'] }): SelectQueryBuilder<E> {
|
||||
this.andNotBlockingUser(q, ':meId', 'user.id');
|
||||
this.andNotBlockingUser(q, 'user.id', ':me.id');
|
||||
this.andNotBlockingUser(q, 'user.id', ':meId');
|
||||
return q.setParameters({ meId: me.id });
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue