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 4608363 commit 13b58bbCopy full SHA for 13b58bb
src/vs/code/electron-sandbox/issue/issueReporterMain.ts
@@ -27,7 +27,9 @@ import { INativeHostService } from 'vs/platform/native/electron-sandbox/native';
27
import { NativeHostService } from 'vs/platform/native/electron-sandbox/nativeHostService';
28
import { applyZoom, zoomIn, zoomOut } from 'vs/platform/window/electron-sandbox/window';
29
30
-const MAX_URL_LENGTH = 2045;
+// 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;
33
34
interface SearchResult {
35
html_url: string;
0 commit comments