Skip to content

Commit 1bbe4bf

Browse files
committed
Use += instead of =
1 parent e2968cc commit 1bbe4bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/default/DuplicateCheckerPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class DuplicateCheckerPlugin implements IEventPlugin {
2929

3030
while (error) {
3131
if (error.stack_trace && error.stack_trace.length) {
32-
hashCode = (hashCode * 397) ^ Utils.getHashCode(JSON.stringify(error.stack_trace));
32+
hashCode += (hashCode * 397) ^ Utils.getHashCode(JSON.stringify(error.stack_trace));
3333
}
3434
error = error.inner;
3535
}

0 commit comments

Comments
 (0)