mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
have hidden prss setting (#198449)
This commit is contained in:
@@ -102,6 +102,13 @@ export abstract class AbstractUpdateService implements IUpdateService {
|
||||
return;
|
||||
}
|
||||
|
||||
// hidden setting
|
||||
if (this.configurationService.getValue<boolean>('_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') {
|
||||
|
||||
Reference in New Issue
Block a user