Bugfix - Fixed live queries to respect filters (#2192)
This commit is contained in:
parent
73a4e54ad5
commit
8ae8770812
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ impl<'a> Document<'a> {
|
|||
// Create a new statement
|
||||
let lq = Statement::from(lv);
|
||||
// Check LIVE SELECT where condition
|
||||
if self.check(ctx, opt, stm).await.is_err() {
|
||||
if self.check(ctx, opt, &lq).await.is_err() {
|
||||
continue;
|
||||
}
|
||||
// Check what type of data change this is
|
||||
|
|
Loading…
Reference in a new issue