From ddb2413910723941c062972f297b2f7d31a62991 Mon Sep 17 00:00:00 2001 From: Xuewen Wang Date: Mon, 26 Feb 2024 21:17:15 +0000 Subject: [PATCH] modify something --- opscore-utility-process.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opscore-utility-process.js b/opscore-utility-process.js index 08ed8ae..4031d11 100644 --- a/opscore-utility-process.js +++ b/opscore-utility-process.js @@ -470,10 +470,13 @@ class UtilityServerStub { * the name of the addXML specific function */ dumpXML(args) { - const xmlDumper = new this.mod.datastore.XMLDumper(this.mod.writer); if (args.ids === undefined) { throw new Error('Need an object id to add to XML dumper') } + + const xmlDumper = new this.mod.datastore.XMLDumper(this.mod.writer); + xmlDumper.AddAuxiliaryData(this.mod.writer); + let evalArgs args.ids.forEach((id) => { if (isNaN(id)) { evalArgs = '"' + id + '"'; }