fix: add missing driver parameter to /call endpoint

This commit is contained in:
KernelDeimos
2024-07-31 23:20:51 -04:00
committed by Eric Dubé
parent 1f059c330c
commit b520783bf4

View File

@@ -73,6 +73,7 @@ module.exports = eggspress('/drivers/call', {
const result = await context.arun(async () => {
return await svc_driver.call({
iface: interface_name,
driver: body.driver,
method: body.method,
format: body.format,
args: body.args,