From f4e8bdbd7b03f8d8745920b7767367c0acb2bf69 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Mon, 17 Oct 2016 16:43:09 +0200 Subject: [PATCH] Bad string substitution "Problem loading theme: {0}". Fixes #13261 --- .../parts/themes/electron-browser/themes.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts b/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts index b082945c28b..33df310cc25 100644 --- a/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts +++ b/src/vs/workbench/parts/themes/electron-browser/themes.contribution.ts @@ -53,7 +53,7 @@ class SelectColorThemeAction extends Action { theme = currentTheme; } this.themeService.setColorTheme(theme.id, broadcast) - .done(null, err => this.messageService.show(Severity.Info, localize('problemChangingTheme', "Problem loading theme: {0}", err.message))); + .done(null, err => this.messageService.show(Severity.Info, localize('problemChangingTheme', "Problem loading theme: {0}", err))); }; const placeHolder = localize('themes.selectTheme', "Select Color Theme"); -- GitLab