Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixing the incredibly rare case of overlap per @isaacs suggestion.
  • Loading branch information
mikeal committed Feb 29, 2012
1 parent 6aa751c commit 3d51664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Expand Up @@ -57,7 +57,7 @@ function File (options) {
}

if (!err) {
self.etag = crypto.createHash('md5').update(stats.ino + stats.mtime + stats.size).digest("hex")
self.etag = crypto.createHash('md5').update(stats.ino+'/'+stats.mtime+'/'+stats.size).digest("hex")
self.lastmodified = rfc822.getRFC822Date(stats.mtime)
}

Expand Down

0 comments on commit 3d51664

Please sign in to comment.