Forgot a line there. Still not a clean fix imo
This commit is contained in:
Kevin Ramharak 2018-01-03 22:54:15 +01:00 committed by GitHub
parent d4732d8946
commit 4cf5ea81cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -958,7 +958,7 @@ function tickListener(message) {
var subLines = lines[i].match(/.{1,40}/g); var subLines = lines[i].match(/.{1,40}/g);
for (var j = 0; j < subLines.length; j++) { for (var j = 0; j < subLines.length; j++) {
tmpBuffer += subLines[j];
//Don't put a newline at the end //Don't put a newline at the end
if (j !== subLines.length - 1) { if (j !== subLines.length - 1) {
tmpBuffer += "\n"; tmpBuffer += "\n";