mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 02:32:31 +01:00
Fix PROTOCTL NAMESX and only send when not using multi-prefix
.
This capability is the equivalent of the old protoctl token.
This commit is contained in:
parent
bd4290a1a9
commit
2dbc6adbc2
@ -918,8 +918,12 @@ inbound_005 (server * serv, char *word[], const message_tags_data *tags_data)
|
||||
server_set_encoding (serv, "UTF-8");
|
||||
} else if (g_strcmp0 (tokname, "NAMESX") == 0)
|
||||
{
|
||||
/* 12345678901234567 */
|
||||
tcp_send_len (serv, "PROTOCTL NAMESX\r\n", 17);
|
||||
if (tokadding && !serv->have_namesx)
|
||||
{
|
||||
/* only use protoctl if the server doesn't have the equivalent cap */
|
||||
tcp_send_len (serv, "PROTOCTL NAMESX\r\n", 17);
|
||||
serv->have_namesx = TRUE;
|
||||
}
|
||||
} else if (g_strcmp0 (tokname, "WHOX") == 0)
|
||||
{
|
||||
serv->have_whox = tokadding;
|
||||
|
Loading…
Reference in New Issue
Block a user