Skip to content

Commit efceb42

Browse files
ewrayjohnsonachrinza
authored andcommitted
fix: null value not persisted for JSON, Any, Object types
fixes #1895 Signed-off-by: Rifa Achrinza <[email protected]>
1 parent cc5557b commit efceb42

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lib/dao.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,12 @@ DataAccessObject._forDB = function(data) {
179179
const res = {};
180180
for (const propName in data) {
181181
const type = this.getPropertyType(propName);
182-
if (type === 'JSON' || type === 'Any' || type === 'Object' || data[propName] instanceof Array) {
183-
res[propName] = JSON.stringify(data[propName]);
182+
const value = data[propName];
183+
if (value !== null && (type === 'JSON' || type === 'Any' ||
184+
type === 'Object' || value instanceof Array)) {
185+
res[propName] = JSON.stringify(value);
184186
} else {
185-
res[propName] = data[propName];
187+
res[propName] = value;
186188
}
187189
}
188190
return res;

0 commit comments

Comments
 (0)