From a322729e2d8544c8de6b0dd13bd0aa5ad46fc337 Mon Sep 17 00:00:00 2001 From: bgme <i@bgme.me> Date: Mon, 5 May 2025 01:39:45 +0800 Subject: [PATCH] fix(dnscrypt_to_smartdns): remove -exclude-default-group from output file --- dnscrypt_to_smartdns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnscrypt_to_smartdns.py b/dnscrypt_to_smartdns.py index c1a3991..3424805 100644 --- a/dnscrypt_to_smartdns.py +++ b/dnscrypt_to_smartdns.py @@ -102,7 +102,7 @@ def get_final_doh_list(): def get_smartdns_config(): stamps = get_final_doh_list() lines = set(map( - lambda x: 'server-https https://' + x.hostname + x.path + ' -group GFW -exclude-default-group', + lambda x: 'server-https https://' + x.hostname + x.path + ' -group GFW', stamps )) return '\n'.join(lines)