Reduce url length limit for issue reporter on Windows, ##44245

This commit is contained in:
Rachel Macfarlane
2018-02-22 17:25:55 -08:00
parent 0cb6cfec4f
commit ce4aa1d497

View File

@@ -41,7 +41,7 @@ import { LogLevelSetterChannelClient, FollowerLogService } from 'vs/platform/log
import { ILogService, getLogLevel } from 'vs/platform/log/common/log';
import { OcticonLabel } from 'vs/base/browser/ui/octiconLabel/octiconLabel';
const MAX_URL_LENGTH = 5400;
const MAX_URL_LENGTH = platform.isWindows ? 2081 : 5400;
interface SearchResult {
html_url: string;