fix(dnscrypt_to_smartdns): remove -exclude-default-group from output file

This commit is contained in:
bgme 2025-05-05 01:39:45 +08:00
parent b6e605e50f
commit a322729e2d

View file

@ -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)