Skip to content

Commit

Permalink
decoding URI before showing message
Browse files Browse the repository at this point in the history
Signed-off-by: Joy Lal Chattaraj <Joylal4896@gmail.com>
  • Loading branch information
chattarajoy committed Jul 16, 2019
1 parent da653c2 commit e0e04a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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: ' + result.uri.toString());
this.messageService.info('Plugin folder is set to: ' + decodeURI(result.uri.toString()));
} else {
this.messageService.error('Specified folder does not contain valid plugin.');
}
Expand Down

0 comments on commit e0e04a3

Please sign in to comment.