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),
|
cacheStorage.get(internalKey),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
if ( µb.readyToFilter !== true ) {
|
||||||
µb.supportStats.maxAssetCacheWait = Math.max(
|
µb.supportStats.maxAssetCacheWait = Math.max(
|
||||||
Date.now() - t0,
|
Date.now() - t0,
|
||||||
parseInt(µb.supportStats.maxAssetCacheWait, 10) || 0
|
parseInt(µb.supportStats.maxAssetCacheWait, 10) || 0
|
||||||
) + ' ms';
|
) + ' ms';
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
bin instanceof Object === false ||
|
bin instanceof Object === false ||
|
||||||
|
|
Loading…
Reference in New Issue