Skip to content

Commit

Permalink
fix: Add missing '?' in xml prolog
Browse files Browse the repository at this point in the history
  • Loading branch information
abmusse committed Feb 25, 2020
1 parent 0485bc8 commit bff8649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class Connection {
}

// Build the XML document.
const xmlInput = `<xml version='1.0'?><myscript>${this.commandList.join()}</myscript>`;
const xmlInput = `<?xml version='1.0'?><myscript>${this.commandList.join()}</myscript>`;
// reset the command list
this.commandList = [];
this.transportOptions.verbose = this.verbose;
Expand Down

0 comments on commit bff8649

Please sign in to comment.