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 e2968cc commit 1bbe4bfCopy full SHA for 1bbe4bf
src/plugins/default/DuplicateCheckerPlugin.ts
@@ -29,7 +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(JSON.stringify(error.stack_trace));
+ hashCode += (hashCode * 397) ^ Utils.getHashCode(JSON.stringify(error.stack_trace));
33
}
34
error = error.inner;
35
0 commit comments