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 f7c9b2d commit b26971aCopy full SHA for b26971a
src/plugins/default/DuplicateCheckerPlugin.ts
@@ -28,8 +28,9 @@ export class DuplicateCheckerPlugin implements IEventPlugin {
28
let hashCode = 0;
29
30
while (error) {
31
- if (error.stack_trace && error.stack_trace.length) {
32
- hashCode += (hashCode * 397) ^ Utils.getHashCode(error.message);
+ hashCode += (hashCode * 397) ^ Utils.getHashCode(error.message);
+
33
+ if (error.stack_trace && error.stack_trace.length) {
34
hashCode += (hashCode * 397) ^ Utils.getHashCode(JSON.stringify(error.stack_trace));
35
}
36
error = error.inner;
0 commit comments