From e6a9fcae2f04673b4dd2a52d8dc22ae09c6a70a5 Mon Sep 17 00:00:00 2001 From: Elbert Alias <77259+AliasIO@users.noreply.github.com> Date: Fri, 15 Jun 2018 08:49:19 +1000 Subject: [PATCH] Build v5.4.19 --- src/drivers/npm/package.json | 2 +- src/drivers/webextension/manifest.json | 2 +- src/wappalyzer.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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 = [];