diff --git a/src/vs/code/electron-main/update-manager.ts b/src/vs/code/electron-main/update-manager.ts index c82e6191e7e..86175b41a9c 100644 --- a/src/vs/code/electron-main/update-manager.ts +++ b/src/vs/code/electron-main/update-manager.ts @@ -231,7 +231,9 @@ export class UpdateManager extends EventEmitter implements IUpdateService { } private getUpdateChannel(): string { - const channel = this.configurationService.getConfiguration('update.channel') || 'default'; + const config = this.configurationService.getConfiguration<{ channel: string; }>('update'); + const channel = config && config.channel; + return channel === 'none' ? null : this.envService.quality; }