From f4cca7a479ad294438c43abb78786af49cb95efb Mon Sep 17 00:00:00 2001 From: Brendan Coles Date: Sat, 14 Oct 2017 15:59:11 +0000 Subject: [PATCH] Fix IE plugin detection --- core/main/client/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/main/client/browser.js b/core/main/client/browser.js index 8c44992fe..8847a968b 100644 --- a/core/main/client/browser.js +++ b/core/main/client/browser.js @@ -2691,7 +2691,7 @@ beef.browser = { }; // Things lacking navigator.plugins - if (!this.capabilities()["navigator.plugins"]) this.getPluginsIE(); + if (!this.capabilities()["navigator.plugins"]) results = this.getPluginsIE(); // All other browsers that support navigator.plugins else if (navigator.plugins && navigator.plugins.length > 0) {