Print jupyter URL without encoded characters in notebook start message. (#9131)

This commit is contained in:
Cory Rivera
2020-02-13 11:19:34 -08:00
committed by GitHub
parent f10a504f45
commit 30c8182f16

View File

@@ -278,7 +278,7 @@ export class PerFolderServerInstance implements IServerInstance {
this._uri = url;
this._port = port;
}
this.notifyStarted(install, url.toString());
this.notifyStarted(install, url.toString(true));
this._isStarted = true;
this.updateListeners(handleStdout, handleStdErr, onErrorBeforeStartup, onExitBeforeStart);