This commit is contained in:
Kevin R
2024-07-14 16:01:26 +02:00
committed by Kevin
parent fcbe2abfdd
commit 08de228cc5
2 changed files with 13 additions and 22 deletions

View File

@@ -51,7 +51,7 @@ function removeFieldsFormURL(provider, pureUrl, quiet = false, request = null) {
* Skip whitelisted sites
*/
for (const site of storage.whitelist) {
if (url.indexOf(site) != -1) {
if (url.indexOf(site) !== -1) {
return {
"changes": false,
"url": url,