From fd2ea5fbf6778bfdcb7900a075d215b2fcc66bd5 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Mon, 26 Feb 2018 17:47:06 -0800 Subject: [PATCH] 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 --- src/vs/workbench/parts/html/browser/webview.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/vs/workbench/parts/html/browser/webview.ts b/src/vs/workbench/parts/html/browser/webview.ts index 0632e2f6033..00669ce6dad 100644 --- a/src/vs/workbench/parts/html/browser/webview.ts +++ b/src/vs/workbench/parts/html/browser/webview.ts @@ -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,