Skip to content
Snippets Groups Projects
Commit ba09065f authored by deuce's avatar deuce
Browse files

Use String.repeat() instead of a fixes string... it looks like there may have

been an extra space in there.
parent a647f9c4
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,7 @@ function process_tic(tic)
ld = tic.ldesc.split(/\r?\n/);
for (i=0; i<ld.length; i++) {
if (i)
files_bbs[dir] += " ";
files_bbs[dir] += " ".repeat(23);
files_bbs[dir] += ld[i]+"\r\n";
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment