Fix performance issue in WebExtension driver

main
Elbert Alias 3 years ago
parent a8f64ee566
commit 51378ab64a

@ -429,7 +429,7 @@ const Driver = {
Driver.cache.hostnames[hostname].analyzedScripts = []
}
if (Driver.cache.hostnames[hostname].analyzedScripts.length > 50) {
if (Driver.cache.hostnames[hostname].analyzedScripts.length >= 25) {
return
}