From 475b0458b2adef855e79d5823e0db6e1c40d658a Mon Sep 17 00:00:00 2001 From: Altify Date: Tue, 31 May 2022 09:38:48 -0700 Subject: [PATCH] multiple destination fix fix-3 --- js/urlcheck.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/urlcheck.js b/js/urlcheck.js index 61ce3482a..1575ae166 100644 --- a/js/urlcheck.js +++ b/js/urlcheck.js @@ -24,7 +24,7 @@ $(document).ready(function() { if (window.location.href.indexOf(("destination=proxy") || ("destination=pg")) > -1) { window.location.replace(origin+"/html/NEW_TOOLS/ProxyGen"); } - if (window.location.href.indexOf("destination=lol1" || "destination=lol2") > -1) { + if (window.location.href.indexOf("destination=lol1") || ("destination=lol2") > -1) { alert('lol'); } });