Fix silly error with toString for custom editors

Fixes #91317
This commit is contained in:
Matt Bierner
2020-02-24 15:58:47 -08:00
parent a10e4cb911
commit 915089a8aa

View File

@@ -389,7 +389,7 @@ class WebviewDocumentStore {
}
private key(viewType: string, resource: vscode.Uri): string {
return `${viewType}@@@${resource.toString}`;
return `${viewType}@@@${resource}`;
}
}