1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 09:43:13 +02:00

irc: add support of capability "draft/multiline" (closes #1923)

This commit is contained in:
Sébastien Helleu
2023-05-05 20:38:38 +02:00
parent e8b5d73421
commit 176a106771
22 changed files with 1450 additions and 133 deletions
+5
View File
@@ -966,6 +966,11 @@ IRC_PROTOCOL_CALLBACK(cap)
{
weechat_hashtable_set (server->cap_ls,
str_name, pos_value + 1);
if (strcmp (str_name, "draft/multiline") == 0)
{
irc_message_parse_cap_multiline_value (
server, pos_value + 1);
}
free (str_name);
}
}