We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sometimes it creates a double dot before the CNAME like this:
jksdfksdf9e93jf2ij23fjkl..dnsforwarding.com
In the code .trim('.') is used, but that does not work:
.trim('.')
https://github.com/adriaanvanrossum/dnsforwarding.com/blob/5006c0a233ebc67ab4fb53eeec14df64964b61f0/docs/index.html#L167
Replace this with something like this:
.replace(/^\.+|\.+$/g, '');
The text was updated successfully, but these errors were encountered:
adriaandotcom
No branches or pull requests
Sometimes it creates a double dot before the CNAME like this:
In the code
.trim('.')
is used, but that does not work:https://github.com/adriaanvanrossum/dnsforwarding.com/blob/5006c0a233ebc67ab4fb53eeec14df64964b61f0/docs/index.html#L167
Replace this with something like this:
The text was updated successfully, but these errors were encountered: