瀏覽代碼

Fixes command execute issue

main
Eric Amodio 2 年之前
父節點
當前提交
87f5910d11
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/system/command.ts

+ 1
- 1
src/system/command.ts 查看文件

@ -41,7 +41,7 @@ export function executeCommand(
command: SupportedCommands,
...args: T
): Thenable<U> {
return commands.executeCommand<U>(command, args);
return commands.executeCommand<U>(command, ...args);
}
export function executeCoreCommand<T = unknown, U = any>(command: CoreCommands, arg: T): Thenable<U>;

Loading…
取消
儲存