Console: Show file mod time in local time zone on /jars

This commit is contained in:
zzz
2021-01-01 11:05:04 -05:00
parent 6978049416
commit 4c4dbae107

View File

@ -115,7 +115,7 @@ public class FileDumpHelper extends HelperBase {
"<td>");
long mod = f.lastModified();
if (mod > 0)
buf.append((new Date(mod)).toString());
buf.append(DataHelper.formatTime(mod));
else
buf.append("<font color=\"red\">Not found</font>");
buf.append("</td><td align=\"center\">");