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