diff --git a/doc/en/weechat_relay_protocol.en.txt b/doc/en/weechat_relay_protocol.en.txt index 2d8e7ece5..3884840eb 100644 --- a/doc/en/weechat_relay_protocol.en.txt +++ b/doc/en/weechat_relay_protocol.en.txt @@ -474,7 +474,8 @@ WeeChat reserved identifiers: | _buffer_line_added | Line added in buffer | line | 'buffer' (pointer), 'date' (time), 'date_printed' (time), 'displayed' (char), - 'highlight' (char), 'prefix' (string), 'message' (string) | + 'highlight' (char), 'tags_array' (array of strings), 'prefix' (string), + 'message' (string) | Display line in buffer | _buffer_closing | Buffer closing | buffer | diff --git a/src/plugins/relay/weechat/relay-weechat-protocol.c b/src/plugins/relay/weechat/relay-weechat-protocol.c index c21754d45..1ae66aee4 100644 --- a/src/plugins/relay/weechat/relay-weechat-protocol.c +++ b/src/plugins/relay/weechat/relay-weechat-protocol.c @@ -454,8 +454,8 @@ relay_weechat_protocol_signal_buffer_cb (void *data, const char *signal, (long unsigned int)ptr_line_data); relay_weechat_msg_add_hdata (msg, cmd_hdata, "buffer,date,date_printed," - "displayed,highlight,prefix," - "message"); + "displayed,highlight,tags_array," + "prefix,message"); relay_weechat_msg_send (ptr_client, msg); relay_weechat_msg_free (msg); }