Skip to content

Commit 222dfa1

Browse files
author
Benjamin Pasero
committed
1 parent 30bba10 commit 222dfa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/vs/workbench/contrib/update/browser

src/vs/workbench/contrib/update/browser/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export class ProductContribution implements IWorkbenchContribution {
136136

137137
// was there an update? if so, open release notes
138138
const releaseNotesUrl = productService.releaseNotesUrl;
139-
if (shouldShowReleaseNotes && releaseNotesUrl && lastVersion && productService.version !== lastVersion) {
139+
if (shouldShowReleaseNotes && !environmentService.skipReleaseNotes && releaseNotesUrl && lastVersion && productService.version !== lastVersion) {
140140
showReleaseNotes(instantiationService, productService.version)
141141
.then(undefined, () => {
142142
notificationService.prompt(

0 commit comments

Comments
 (0)