diff --git a/src/vs/platform/update/electron-main/abstractUpdateService.ts b/src/vs/platform/update/electron-main/abstractUpdateService.ts index ef00e31d7a31f..39e65d4a2ddcb 100644 --- a/src/vs/platform/update/electron-main/abstractUpdateService.ts +++ b/src/vs/platform/update/electron-main/abstractUpdateService.ts @@ -102,6 +102,13 @@ export abstract class AbstractUpdateService implements IUpdateService { return; } + // hidden setting + if (this.configurationService.getValue('_update.prss')) { + const url = new URL(this.url); + url.searchParams.set('prss', 'true'); + this.url = url.toString(); + } + this.setState(State.Idle(this.getUpdateType())); if (updateMode === 'manual') {