From 85228fd7d23677a41e28d4e6b31b3bb90a414306 Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Wed, 11 Oct 2023 22:12:54 +0900 Subject: [PATCH] fix: set default adblocker as InPlayer Fixed an issue with the initial launch in certain regions, such as South Korea. --- config/defaults.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/defaults.ts b/config/defaults.ts index e8a3a704..b7bbade6 100644 --- a/config/defaults.ts +++ b/config/defaults.ts @@ -74,7 +74,7 @@ const defaultConfig = { 'adblocker': { enabled: true, cache: true, - blocker: blockers.WithBlocklists as string, + blocker: blockers.InPlayer as string, // Fixed an issue with the initial launch in certain regions, such as South Korea. additionalBlockLists: [], // Additional list of filters, e.g "https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt" disableDefaultLists: false, },