From dc78218d79781c273f0879b234c27acf05708cd6 Mon Sep 17 00:00:00 2001 From: Joy Lal Chattaraj Date: Thu, 18 Jul 2019 12:08:17 +0000 Subject: [PATCH] changed to labelProvider getlongname Signed-off-by: Joy Lal Chattaraj --- packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts b/packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts index 01e0e92353a78..9563ea2c615e5 100644 --- a/packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts +++ b/packages/plugin-dev/src/browser/hosted-plugin-manager-client.ts @@ -265,7 +265,7 @@ export class HostedPluginManagerClient { if (UriSelection.is(result)) { if (await this.hostedPluginServer.isPluginValid(result.uri.toString())) { this.pluginLocation = result.uri; - this.messageService.info('Plugin folder is set to: ' + decodeURI(result.uri.toString())); + this.messageService.info('Plugin folder is set to: ' + this.labelProvider.getLongName(result.uri)); } else { this.messageService.error('Specified folder does not contain valid plugin.'); }