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
The safest regex for usernames/handles/slugs would be ^[a-z0-9_]+$. They should be in lowercase because of the same reason why domain names are in lowercase.
Imagine all these domains are different:
apple
Apple
aPPle
APPLE
...
if they are handled as different names then we are in trouble with squatters.
regex package from crates.io doesn't compile to wasm, so need alternative or roll our own.
The text was updated successfully, but these errors were encountered: