Skip to content

Commit c9cd826

Browse files
committed
🐞 fix: getActualShape
1 parent 88fa041 commit c9cd826

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/chili-occ/src/occHelps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,12 +458,12 @@ export class OccHelps {
458458
);
459459
const hashes = unique ? new Map() : undefined;
460460
while (explorer.More()) {
461-
const item = explorer.Current();
461+
const item = this.getActualShape(explorer.Current());
462462
if (unique) {
463463
const hash = OccHelps.hashCode(item);
464464
if (!hashes!.has(hash)) {
465465
hashes!.set(hash, true);
466-
yield this.getActualShape(item);
466+
yield item;
467467
}
468468
} else {
469469
yield item;

0 commit comments

Comments
 (0)