This commit is contained in:
Johannes Rieken
2017-12-15 17:11:07 +01:00
parent 34aafba6b7
commit 3bac9bd027
2 changed files with 6 additions and 2 deletions

View File

@@ -101,7 +101,7 @@ export class ExtHostCommands implements ExtHostCommandsShape {
}
});
return this._proxy.$executeCommand<T>(id, args);
return this._proxy.$executeCommand<T>(id, args).then(result => revive(result, 0));
}
}