From b0073641a1ac50a776036d146bb583543033efd9 Mon Sep 17 00:00:00 2001 From: ValdikSS Date: Sat, 6 Jan 2024 03:12:15 +0300 Subject: [PATCH] Skip all domains starting with the number for now, to shrink PAC file size --- config/exclude-regexp-dist.awk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/exclude-regexp-dist.awk b/config/exclude-regexp-dist.awk index 19828d8..98cf5f5 100644 --- a/config/exclude-regexp-dist.awk +++ b/config/exclude-regexp-dist.awk @@ -315,6 +315,8 @@ /^bet/ {next} /^bonus/ {next} +# uuugh... +/^[0-9]/ {next} length($1) > 30 && !/wixmp/ {next}