You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 24, 2022. It is now read-only.
I found a minor issue when using The Rules Converter. Say if I have a dnsmasq conf file written like server=/.blogspot.com/8.8.8.8
it means I want blogspot.com along with its subdomains to be resolved by 8.8.8.8.
The correct conversion should be sth like [ { "Pattern": "^(.*\\.)?blogspot\\.com$", "NameServer": "8.8.8.8" } ]
However, the current converter adds extra '\\.' in the URL, yielding [ { "Pattern": "^(.*\\.)?\\.blogspot\\.com$", "NameServer": "8.8.8.8" } ]
so that the rule won't work as expected.
The converter might deal with such edge case more properly. Thanks