We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b578213 commit 65d0bd7Copy full SHA for 65d0bd7
src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.ts
@@ -369,6 +369,11 @@ export class FileBasedRecommendations extends ExtensionRecommendations {
369
}
370
371
private async promptRecommendedExtensionForFileExtension(uri: URI, fileExtension: string): Promise<void> {
372
+
373
+ if (this.extensionRecommendationNotificationService.hasToIgnoreRecommendationNotifications()) {
374
+ return;
375
+ }
376
377
// Do not prompt when there is no local and remote extension management servers
378
if (!this.extensionManagementServerService.localExtensionManagementServer && !this.extensionManagementServerService.remoteExtensionManagementServer) {
379
return;
0 commit comments