querysub 0.386.0 → 0.387.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -310,11 +310,11 @@ export async function exposeErrorWatchService() {
|
|
|
310
310
|
for (let suppressionEntry of suppressionEntries) {
|
|
311
311
|
let status = applySuppression(error, suppressionEntry);
|
|
312
312
|
if (status === "suppressed" || status === "matched-timeout-passed") {
|
|
313
|
+
matchedSuppressionId = suppressionEntry.id;
|
|
313
314
|
void ErrorNotificationService.triggerSuppressionUpdate(suppressionEntry.id);
|
|
314
315
|
}
|
|
315
316
|
if (status === "suppressed") {
|
|
316
317
|
suppressed = true;
|
|
317
|
-
matchedSuppressionId = suppressionEntry.id;
|
|
318
318
|
}
|
|
319
319
|
}
|
|
320
320
|
|