update cache mechanism to handle forced profile
This commit is contained in:
committed by
Patrick Niklaus
parent
999211ed9c
commit
59f8330db4
@@ -20,11 +20,11 @@ module.exports = {
|
||||
});
|
||||
},
|
||||
|
||||
hashOfFile: (path, cb) => {
|
||||
hashOfFile: (path, additional_content, cb) => {
|
||||
fs.readFile(path, (err, result) => {
|
||||
if (err) return cb(err);
|
||||
let checksum = crypto.createHash('md5');
|
||||
checksum.update(result);
|
||||
checksum.update(result + (additional_content || "") );
|
||||
cb(null, checksum.digest('hex'));
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user