Fix reload command not working

Do not check that the contents are the same inside the webview itself. This is already handled at a higher level
This commit is contained in:
Matt Bierner 2018-02-26 17:47:06 -08:00
parent cfcc5c8121
commit fd2ea5fbf6

View file

@ -234,10 +234,6 @@ export class Webview {
}
public set contents(value: string) {
if (this._contents === value) {
return;
}
this._contents = value;
this._send('content', {
contents: value,