diff --git a/src/drivers/npm/package.json b/src/drivers/npm/package.json index 8d74720c9..46a343eec 100644 --- a/src/drivers/npm/package.json +++ b/src/drivers/npm/package.json @@ -2,7 +2,7 @@ "name": "wappalyzer", "description": "Uncovers the technologies used on websites", "homepage": "https://github.com/AliasIO/Wappalyzer", - "version": "5.4.18", + "version": "5.4.17", "author": "Elbert Alias", "license": "GPL-3.0", "repository": { diff --git a/src/drivers/webextension/manifest.json b/src/drivers/webextension/manifest.json index da13853aa..8fa9a3f7e 100644 --- a/src/drivers/webextension/manifest.json +++ b/src/drivers/webextension/manifest.json @@ -4,7 +4,7 @@ "author": "Elbert Alias", "homepage_url": "https://www.wappalyzer.com", "description": "Identify web technologies", - "version": "5.4.18", + "version": "5.4.17", "default_locale": "en", "manifest_version": 2, "icons": { diff --git a/src/wappalyzer.js b/src/wappalyzer.js index 762915a1e..76b340ee6 100644 --- a/src/wappalyzer.js +++ b/src/wappalyzer.js @@ -200,13 +200,13 @@ class Wappalyzer { * */ ping() { - if ( Object.keys(this.hostnameCache).length > 1 ) { + if ( Object.keys(this.hostnameCache).length > 100 ) { this.driver.ping(this.hostnameCache); this.hostnameCache = {}; } - if ( this.adCache.length > 1 ) { + if ( this.adCache.length > 50 ) { this.driver.ping({}, this.adCache); this.adCache = [];