Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Domains: Convert characters to basic Latin, when possible
The WHOIS specification does not define the required character set to be used, but most WHOIS servers use just the basic Latin character set, so that's what we enforce too. This change automagically converts other characters to their basic Latin versions using the `deburr` method from Lodash. So `ś` becomes `s`, `ą` -> `a`, etc. Fixes #12559
- Loading branch information