diff options
author | Andrew Potter <agpotter@gmail.com> | 2021-03-26 17:27:37 -0700 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-16 10:00:30 +0200 |
commit | 94c902adfcbc7bae5039fe383ddfc5064297d40c (patch) | |
tree | 8fca3990db5140e48001a6c6b1fd7a5b25b52032 /src/plugins/xfer/xfer-chat.c | |
parent | 670c5cd7456e4c9c3be0d3ef8a5cadd9df764b43 (diff) | |
download | weechat-94c902adfcbc7bae5039fe383ddfc5064297d40c.zip |
irc, buflist: add bar item "tls_version" with options for colors, add buflist format "${format_tls_version}" (issue #1622)
Diffstat (limited to 'src/plugins/xfer/xfer-chat.c')
-rw-r--r-- | src/plugins/xfer/xfer-chat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/xfer/xfer-chat.c b/src/plugins/xfer/xfer-chat.c index bb60a8b20..070ee0712 100644 --- a/src/plugins/xfer/xfer-chat.c +++ b/src/plugins/xfer/xfer-chat.c @@ -391,6 +391,7 @@ xfer_chat_open_buffer (struct t_xfer *xfer) weechat_buffer_set (xfer->buffer, "localvar_set_type", "private"); weechat_buffer_set (xfer->buffer, "localvar_set_nick", xfer->local_nick); weechat_buffer_set (xfer->buffer, "localvar_set_channel", xfer->remote_nick); + weechat_buffer_set (xfer->buffer, "localvar_set_tls_version", _("cleartext")); weechat_buffer_set (xfer->buffer, "highlight_words_add", "$nick"); } |