mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-08 12:12:39 +01:00
Implement support for the IRCv3 UTF8ONLY specification.
https://ircv3.net/specs/extensions/utf8-only
This commit is contained in:
parent
734d888210
commit
333a02d015
@ -913,6 +913,9 @@ inbound_005 (server * serv, char *word[], const message_tags_data *tags_data)
|
||||
{
|
||||
server_set_encoding (serv, "UTF-8");
|
||||
}
|
||||
} else if (g_strcmp0 (tokname, "UTF8ONLY") == 0)
|
||||
{
|
||||
server_set_encoding (serv, "UTF-8");
|
||||
} else if (g_strcmp0 (tokname, "NAMESX") == 0)
|
||||
{
|
||||
/* 12345678901234567 */
|
||||
|
Loading…
Reference in New Issue
Block a user