We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b2a3a commit 2e335d2Copy full SHA for 2e335d2
src/vs/workbench/contrib/editSessions/browser/editSessionsStorageService.ts
@@ -33,7 +33,7 @@ export class EditSessionsWorkbenchService extends Disposable implements IEditSes
33
34
declare _serviceBrand: undefined;
35
36
- public readonly SIZE_LIMIT = 1024 * 1024 * 2; // 2 MB
+ public readonly SIZE_LIMIT = Math.floor(1024 * 1024 * 1.9); // 2 MB
37
38
private serverConfiguration = this.productService['editSessions.store'];
39
private machineClient: IUserDataSyncMachinesService | undefined;
0 commit comments