mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-15 07:28:05 +00:00
fix: revert MAX_FILE_SIZE_BYTES to 1 MB for consistency
This commit is contained in:
@@ -24,7 +24,7 @@ import * as nls from '../../../../nls.js';
|
||||
const MAX_CHANGES = 100;
|
||||
const MAX_DIFFS_SIZE_BYTES = 900 * 1024;
|
||||
const MAX_SESSIONS_WITH_FULL_DIFFS = 5;
|
||||
const MAX_FILE_SIZE_BYTES = 10 * 1024 * 1024; // 10 MB per file
|
||||
const MAX_FILE_SIZE_BYTES = 1 * 1024 * 1024; // 1 MB per file
|
||||
/**
|
||||
* Regex to match `url = <remote-url>` lines in git config.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user