Fixes unknown webview on postMessage

Fixes #45555. These errors will now show up in #45553
This commit is contained in:
Matt Bierner
2018-03-13 11:00:48 -07:00
parent 93bd5435bb
commit 68c78176af

View File

@@ -99,10 +99,12 @@ export class ExtHostWebview implements vscode.Webview {
}
public postMessage(message: any): Thenable<boolean> {
this.assertNotDisposed();
return this._proxy.$sendMessage(this._handle, message);
}
public show(viewColumn: vscode.ViewColumn): void {
this.assertNotDisposed();
this._proxy.$show(this._handle, typeConverters.fromViewColumn(viewColumn));
}