Skip to content

Commit 5def6a4

Browse files
fix: Always install release version of extensions
Signed-off-by: Roman Nikitenko <rnikiten@redhat.com>
1 parent f18c505 commit 5def6a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

code/src/vs/platform/extensionManagement/common/abstractExtensionManagementService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export abstract class CommontExtensionManagementService extends Disposable imple
6969
@IAllowedExtensionsService protected readonly allowedExtensionsService: IAllowedExtensionsService,
7070
) {
7171
super();
72-
this.preferPreReleases = this.productService.quality !== 'stable';
72+
this.preferPreReleases = false;
7373
}
7474

7575
async canInstall(extension: IGalleryExtension): Promise<true | IMarkdownString> {

0 commit comments

Comments
 (0)