Fix not answering any response if no apps detected

main
Abd ar-Rahman Hamidi 8 years ago committed by GitHub
parent 87a0b9f15a
commit 42000f2429

@ -73,12 +73,10 @@
displayApps: function() {
var
app, cats,
apps = [],
count = wappalyzer.detected[url] ? Object.keys(wappalyzer.detected[url]).length : 0;
apps = [];
wappalyzer.log('driver.displayApps');
if ( count ) {
for ( app in wappalyzer.detected[url] ) {
cats = [];
@ -97,7 +95,6 @@
}
wappalyzer.driver.sendResponse(apps);
}
},
/**