Skip to content

Commit e370f72

Browse files
committed
fix: quick fix for #14606 pulled in from #14623
1 parent a876c12 commit e370f72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/document.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4146,7 +4146,7 @@ function applyVirtuals(self, json, options, toObjectOptions) {
41464146
assignPath = path.substring(options.path.length + 1);
41474147
}
41484148
if (assignPath.indexOf('.') === -1 && assignPath === path) {
4149-
v = clone(self.get(path, { noDottedPath: true }), options);
4149+
v = clone(self.get(path, null, { noDottedPath: true }), options);
41504150
if (v === void 0) {
41514151
continue;
41524152
}

0 commit comments

Comments
 (0)