Skip to content

Commit

Permalink
fix: fix boolean check to match condition
Browse files Browse the repository at this point in the history
  • Loading branch information
makelicious committed Jan 16, 2025
1 parent f0594e4 commit 47c40fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/events/src/service/deduplication/deduplication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function generateElasticsearchQuery(
const matcherFieldWithoutData =
configuration.type !== 'and' &&
configuration.type !== 'or' &&
eventIndex.data[configuration.fieldId]
!eventIndex.data[configuration.fieldId]

if (matcherFieldWithoutData) {
return null
Expand Down

0 comments on commit 47c40fe

Please sign in to comment.