@xuda.io/xuda-db-adapter-module 1.0.127 → 1.0.129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +2 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -342,7 +342,7 @@ _db.get_query = async function (
|
|
|
342
342
|
error: null,
|
|
343
343
|
source: viewSourceDescP,
|
|
344
344
|
json: data,
|
|
345
|
-
fields: Object.assign(ds.locate_from, ds.locate_to),
|
|
345
|
+
fields: Object.assign({}, ds.locate_from, ds.locate_to),
|
|
346
346
|
type: 'file',
|
|
347
347
|
dsSession: dsSessionP,
|
|
348
348
|
});
|
|
@@ -362,7 +362,7 @@ _db.get_query = async function (
|
|
|
362
362
|
error: err_msg,
|
|
363
363
|
source: viewSourceDescP,
|
|
364
364
|
json: null,
|
|
365
|
-
fields: Object.assign(ds.locate_from, ds.locate_to),
|
|
365
|
+
fields: Object.assign({}, ds.locate_from, ds.locate_to),
|
|
366
366
|
type: 'file',
|
|
367
367
|
dsSession: dsSessionP,
|
|
368
368
|
});
|