mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-23 23:54:13 +08:00
Add missing implementation of isMatchCompatible for HasAttachment query #1480
This commit is contained in:
parent
c9b86cc217
commit
3c6802b84e
1 changed files with 4 additions and 0 deletions
|
@ -353,6 +353,10 @@ export class HasAttachmentQueryExpression extends QueryExpression {
|
||||||
visitor.visitHasAttachment(this);
|
visitor.visitHasAttachment(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_computeIsMatchCompatible() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
equals(other) {
|
equals(other) {
|
||||||
return other instanceof HasAttachmentQueryExpression;
|
return other instanceof HasAttachmentQueryExpression;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue