-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
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
Allow specific emoji in nicks/channels #137
Comments
As a note, the specific character is entirely unimportant since it'll never be exposed outside of the folding function. tl;dr figure out where to throw it, probably inside |
Given ircv3/ircv3-specifications#259, this is clearly thorny stuff. I don't think it's a big priority for our deployment (irc.darwin.network) to restore support for this in the absence of an agreed-upon standard. Really we were just goofing around with emoji nicks :-) |
For sure! Something to look at down the road, but super experimental and not urgent :) |
This is more trouble than it's worth, especially with the standard approach to casemapping we're doing. I'll close this issue for now |
You could probably do it in a way similar to...
Get nick
Frosty☃Dude
, convert toFrosty:codepoint:Dude
, casefold that, replace:codepoint:
with☃
and get the casefolded resultant nickfrosty☃dude
.This would work because
:
is not allowed in nicknames, so there'd be no chance of doing an accidental replacement involving:
.The text was updated successfully, but these errors were encountered: