From b28a1e5b473845f75b1ea3bf201a94137f7872bc Mon Sep 17 00:00:00 2001 From: Ray Lothian Date: Wed, 13 Dec 2017 12:15:52 +0330 Subject: [PATCH] fixes https://add0n.com/useragent-switcher.html#IDComment1054682080 --- common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.js b/common.js index ed82a94..93a28f7 100644 --- a/common.js +++ b/common.js @@ -56,7 +56,7 @@ function match(url) { } } else { - if (prefs.blacklist.length) { + if (prefs.whitelist.length) { const h = hostname(url); return prefs.whitelist.some(s => s === h) === false; }