We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5cbc5f commit a9bda2bCopy full SHA for a9bda2b
js/flightlog_parser.js
@@ -356,7 +356,7 @@ var FlightLogParser = function(logData) {
356
357
lineStart = stream.pos;
358
359
- for (; stream.pos < lineStart + 1024 && stream.pos < stream.end; stream.pos++) {
+ for (; stream.pos < lineStart + 2048 && stream.pos < stream.end; stream.pos++) {
360
if (separatorPos === false && stream.data[stream.pos] == COLON)
361
separatorPos = stream.pos;
362
0 commit comments