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 a46fa80 commit 33c679dCopy full SHA for 33c679d
injected/src/features/breakage-reporting.js
@@ -17,8 +17,8 @@ export default class BreakageReporting extends ContentFeature {
17
};
18
19
// Only run detectors if explicitly configured
20
- const interferenceTypes = this.getFeatureSetting('interferenceTypes');
21
- const detectorSettings = interferenceTypes?.webInterferenceDetection;
+ // Fetch interferenceTypes from webInterferenceDetection feature settings
+ const detectorSettings = this.getFeatureSetting('interferenceTypes', 'webInterferenceDetection');
22
if (detectorSettings) {
23
result.detectorData = {
24
botDetection: runBotDetection(detectorSettings.botDetection),
0 commit comments