correct commandArgs parameter on command creation

This commit is contained in:
clauspeterhuebner 2026-02-06 00:36:59 +01:00
parent dd27cd5313
commit 6913fc7a4d

View File

@ -50,7 +50,7 @@ export class CommandExecutor {
if (methodLogger.isDebugEnabled()) {
methodLogger.debug(`executeEncryptedCommand() commandArgs=${JSON.stringify(commandArgs)}`)
}
const command = CommandFactory.getInstance().createCommand(commandArgs.commandName, commandArgs.params);
const command = CommandFactory.getInstance().createCommand(commandArgs.commandName, commandArgs.commandArgs);
if (methodLogger.isDebugEnabled()) {
methodLogger.debug(`executeEncryptedCommand() command=${JSON.stringify(command)}`)
}