Skip to content

Commit

Permalink
Merge pull request #153 from sekirikimu/master
Browse files Browse the repository at this point in the history
fixes invalid created, modified date
  • Loading branch information
cconcolato authored Apr 30, 2019
2 parents 1889de2 + 21dd540 commit 11333cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isofile.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ ISOFile.prototype.getInfo = function() {
var trak;
var track;
var sample_desc;
var _1904 = (new Date(4, 0, 1, 0, 0, 0, 0).getTime());
var _1904 = (new Date('1904-01-01T00:00:00Z').getTime());

if (this.moov) {
movie.hasMoov = true;
Expand Down

0 comments on commit 11333cc

Please sign in to comment.