mirror of https://github.com/gorhill/uBlock.git
another kink
This commit is contained in:
parent
153bb5fb75
commit
bcfb69a777
|
@ -915,6 +915,12 @@ exports.metadata = function(callback) {
|
||||||
entryOut.repoChecksum = entryRepo.repoChecksum;
|
entryOut.repoChecksum = entryRepo.repoChecksum;
|
||||||
entryOut.homeURL = entryRepo.homeURL;
|
entryOut.homeURL = entryRepo.homeURL;
|
||||||
entryOut.repoObsolete = entryOut.localChecksum !== entryOut.repoChecksum;
|
entryOut.repoObsolete = entryOut.localChecksum !== entryOut.repoChecksum;
|
||||||
|
// If the asset has a remote home and there is no corresponding
|
||||||
|
// cache entry, it could be obsolete (because the asset could
|
||||||
|
// have been modified after uBlock repo was updated).
|
||||||
|
if ( entryOut.homeURL && typeof entryOut.lastModified !== 'number' ) {
|
||||||
|
entryOut.cacheObsolete = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
callback(out);
|
callback(out);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue