Skip to content

Commit 13b58bb

Browse files
up max url length to 7500 (microsoft#159491)
up max url length to 7500. Fixes microsoft#159191
1 parent 4608363 commit 13b58bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/vs/code/electron-sandbox/issue/issueReporterMain.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ import { INativeHostService } from 'vs/platform/native/electron-sandbox/native';
2727
import { NativeHostService } from 'vs/platform/native/electron-sandbox/nativeHostService';
2828
import { applyZoom, zoomIn, zoomOut } from 'vs/platform/window/electron-sandbox/window';
2929

30-
const MAX_URL_LENGTH = 2045;
30+
// GitHub has let us know that we could up our limit here to 8k. We chose 7500 to play it safe.
31+
// ref https://github.com/microsoft/vscode/issues/159191
32+
const MAX_URL_LENGTH = 7500;
3133

3234
interface SearchResult {
3335
html_url: string;

0 commit comments

Comments
 (0)