Remove uuid from webview resource uris

This is no longer be needed. We still serve the webview code itself from a unique subdomain

This also removes the need for `serviceWorkerFetchIgnoreSubdomain`
This commit is contained in:
Matt Bierner
2021-05-21 09:28:28 -07:00
parent 79dea51e79
commit 9847783f62
11 changed files with 26 additions and 56 deletions

View File

@@ -190,7 +190,7 @@ export class ExtHostNotebookKernels implements ExtHostNotebookKernelsShape {
return that._proxy.$postMessage(handle, editor && that._extHostNotebook.getIdByEditor(editor), message);
},
asWebviewUri(uri: URI) {
return asWebviewUri(String(handle), uri, that._initData.remote);
return asWebviewUri(uri, that._initData.remote);
},
// --- priority
updateNotebookAffinity(notebook, priority) {