From 4530099c4410c2b5d1a776ed7066a3bba660a9f6 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 3 Apr 2021 19:55:37 -0400 Subject: [PATCH] Fix --- util/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/Util.js b/util/Util.js index 254c8048..67d721b5 100644 --- a/util/Util.js +++ b/util/Util.js @@ -222,7 +222,7 @@ module.exports = class Util { } const parsedRedirect = new URL(redirectURL); const { type: reType, domain: reDomain, topLevelDomains: reTop } = parseDomain(parsedRedirect.hostname); - if (reType !== ParseResultType.Listsed) return null; + if (reType !== ParseResultType.Listed) return null; if (siteList.includes(`${reDomain}.${reTop.join('.')}`)) return true; return false; }