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 9c4207e commit db9d0faCopy full SHA for db9d0fa
src/util/OrmUtils.ts
@@ -75,7 +75,7 @@ export class OrmUtils {
75
if (this.isObject(target) && this.isObject(source)) {
76
for (const key in source) {
77
const value = source[key];
78
- if (value instanceof Promise)
+ if (key === "__proto__" || value instanceof Promise)
79
continue;
80
81
if (this.isObject(value)
0 commit comments