We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b41556f commit b5f8dafCopy full SHA for b5f8daf
libraries/tracker-core/src/core.ts
@@ -407,7 +407,7 @@ export function trackerCore(configuration: CoreConfiguration = {}): TrackerCore
407
// Call the filter on plugins to determine if the event should be tracked
408
const skip = corePlugins.find((plugin) => {
409
try {
410
- return plugin.filter && !plugin.filter(pb.build());
+ return plugin.filter && plugin.filter(pb.build()) === false;
411
} catch (ex) {
412
LOG.error('Plugin filter', ex);
413
return false;
0 commit comments