processes() fix parseline

This commit is contained in:
Sebastian Hildebrandt 2020-12-19 20:54:30 +01:00
parent ab0b5e379f
commit ba4477ca7f

View File

@ -464,7 +464,11 @@ function processes(callback) {
function checkColumn(i) {
offset = offset2;
offset2 = line.substring(parsedhead[i].to + offset, 1000).indexOf(' ');
if (parsedhead[i]) {
offset2 = line.substring(parsedhead[i].to + offset, 1000).indexOf(' ');
} else {
offset2 = 10000;
}
}
checkColumn(0);