I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit 4c4dbae1 authored by zzz's avatar zzz
Browse files

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

parent 69780494
No related branches found
No related tags found
No related merge requests found
......@@ -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\">");
......
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