Skip to content
Snippets Groups Projects
Commit d2db1272 authored by echicken's avatar echicken
Browse files

Numberize the upload/download dates from ixb.

parent 01a6ff14
No related branches found
No related tags found
No related merge requests found
......@@ -199,8 +199,8 @@ var DirFile = function(dir, filename) {
}
if(typeof ixb == "undefined")
throw "DirFile: No ixb record found.";
properties.uploadDate = ixb.uploadDate;
properties.downloadDate = ixb.downloadDate;
properties.uploadDate = Number(ixb.uploadDate);
properties.downloadDate = Number(ixb.downloadDate);
try {
var dat = readDat(dir, ixb.datOffset);
} catch(err) {
......
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