mirror of https://github.com/gorhill/uBlock.git
Report only launch-time value of maxAssetCacheWait
This commit is contained in:
parent
47c731f680
commit
8e35aa74f0
|
@ -558,10 +558,12 @@ const assetCacheRead = async function(assetKey, updateReadTime = false) {
|
|||
cacheStorage.get(internalKey),
|
||||
]);
|
||||
|
||||
µb.supportStats.maxAssetCacheWait = Math.max(
|
||||
Date.now() - t0,
|
||||
parseInt(µb.supportStats.maxAssetCacheWait, 10) || 0
|
||||
) + ' ms';
|
||||
if ( µb.readyToFilter !== true ) {
|
||||
µb.supportStats.maxAssetCacheWait = Math.max(
|
||||
Date.now() - t0,
|
||||
parseInt(µb.supportStats.maxAssetCacheWait, 10) || 0
|
||||
) + ' ms';
|
||||
}
|
||||
|
||||
if (
|
||||
bin instanceof Object === false ||
|
||||
|
|
Loading…
Reference in New Issue