admin/fs: setting root.source to empty string was not clearing the field
Massimo Melina committed
May 15, 2022 at 21:08 UTC
ceb721961d5597efab40f5d2b5877cacfc3dc8ee
1 file changed
+1
-1
server/src/api.vfs.ts
+1
-1
@@ -170,7 +170,7 @@ function pickProps(o: any, keys: string[]) {
170
if (o && typeof o === 'object')
171
for (const k of keys)
172
if (k in o)
173
- ret[k] = o[k] === null && o[k] === '' ? undefined : o[k]
173
+ ret[k] = o[k] === null || o[k] === '' ? undefined : o[k]
174
return ret
175
}
176