We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9749cee + ef5ef30 commit 5c7e862Copy full SHA for 5c7e862
1 file changed
src/vs/workbench/contrib/update/browser/update.ts
@@ -55,8 +55,9 @@ export class OpenLatestReleaseNotesInBrowserAction extends Action {
55
if (this.productService.releaseNotesUrl) {
56
const uri = URI.parse(this.productService.releaseNotesUrl);
57
await this.openerService.open(uri);
58
+ } else {
59
+ throw new Error(nls.localize('update.noReleaseNotesOnline', "This version of {0} does not have release notes online", this.productService.nameLong));
60
}
- throw new Error('This version of Visual Studio Code does not have release notes online');
61
62
63
0 commit comments