EventsDB: fix `this` binding of usersQuery
This commit is contained in:
parent
939eeae25a
commit
384bb729b4
|
@ -187,7 +187,7 @@ class EventsDB implements EventStore {
|
||||||
|
|
||||||
if (typeof filter.local === 'boolean') {
|
if (typeof filter.local === 'boolean') {
|
||||||
query = query
|
query = query
|
||||||
.leftJoin(this.usersQuery, (join) => join.onRef('users.d_tag', '=', 'events.pubkey'))
|
.leftJoin(() => this.usersQuery(), (join) => join.onRef('users.d_tag', '=', 'events.pubkey'))
|
||||||
.where('users.d_tag', filter.local ? 'is not' : 'is', null);
|
.where('users.d_tag', filter.local ? 'is not' : 'is', null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue