We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e4d75f commit c520c85Copy full SHA for c520c85
src/vs/platform/update/electron-main/abstractUpdateService.ts
@@ -102,6 +102,13 @@ export abstract class AbstractUpdateService implements IUpdateService {
102
return;
103
}
104
105
+ // hidden setting
106
+ if (this.configurationService.getValue<boolean>('_update.prss')) {
107
+ const url = new URL(this.url);
108
+ url.searchParams.set('prss', 'true');
109
+ this.url = url.toString();
110
+ }
111
+
112
this.setState(State.Idle(this.getUpdateType()));
113
114
if (updateMode === 'manual') {
0 commit comments