web-manager 3.2.52 → 3.2.53
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/index.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1525,9 +1525,9 @@ function Manager() {
|
|
|
1525
1525
|
console.error('[SENTRY] Caught error', event, hint);
|
|
1526
1526
|
|
|
1527
1527
|
// Skip processing the event
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1528
|
+
if (self.isDevelopment()) {
|
|
1529
|
+
return null;
|
|
1530
|
+
}
|
|
1531
1531
|
|
|
1532
1532
|
// Process the event
|
|
1533
1533
|
return event;
|
package/package.json
CHANGED