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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "querysub",
3
- "version": "0.386.0",
3
+ "version": "0.387.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
@@ -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