Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Nov 6, 2018. It is now read-only.

Commit f725001

Browse filesBrowse files
committed
fix: remove erroneous spread that caused args to be double-spreaded
1 parent dac28bf commit f725001
Copy full SHA for f725001

1 file changed

+1-1Lines changed: 1 addition & 1 deletion

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎src/extension/api/commands.ts‎

Copy file name to clipboardExpand all lines: src/extension/api/commands.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class ExtCommands implements ExtCommandsAPI {
2929
* to execute the command because the desired command might be implemented on the client (or otherwise not in
3030
* this extension host).
3131
*/
32-
public executeCommand(command: string, ...args: any[]): Promise<any> {
32+
public executeCommand(command: string, args: any[]): Promise<any> {
3333
return this.proxy.$executeCommand(command, args)
3434
}
3535

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.