From 7587fa847a9192cae81d00a7c675e3e1a7259465 Mon Sep 17 00:00:00 2001 From: DeciBelioS <96150975+Deci8BelioS@users.noreply.github.com> Date: Fri, 7 Feb 2025 02:23:30 +0100 Subject: [PATCH] Update AGH_filters.py --- Scripts/AGH_filters.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Scripts/AGH_filters.py b/Scripts/AGH_filters.py index 2e5b94c..9bab127 100644 --- a/Scripts/AGH_filters.py +++ b/Scripts/AGH_filters.py @@ -35,6 +35,9 @@ def filter_lines(lines): if line.endswith("r2.dev"): normal_domains.add("*.r2.dev") continue + if line.endswith("dweb.link"): + normal_domains.add("dweb.link") + continue if line.endswith("aomg5bzv7.com"): normal_domains.add("aomg5bzv7.com") continue @@ -76,4 +79,4 @@ def filter_lines(lines): domain = f'||{domain}^' f.write(f"{domain}\n") -print(f"File '{output_file}' generated successfully.") \ No newline at end of file +print(f"File '{output_file}' generated successfully.")