Skip to content
Snippets Groups Projects
Commit 8a062f59 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

When file size is less than 1 byte in length, don't list

0-byte or non-existent files can't be http-downloaded anyway
parent 3f35cd03
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -100,6 +100,8 @@ function dir_index(dir)
writeln("<tbody>");
for(var l in list) {
var f = list[l];
if(f.size <= 0)
continue;
write("<tr>");
write("<td>" + f.name.link(f.name) + "</td>");
write("<td align=right>" + file_size_float(f.size, 1, 0) + "</td>");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment