diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-21 22:14:55 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-23 21:49:53 +0200 |
commit | 3cb5f25681e9ecbfd21f9241f1f3ccd23efba3e7 (patch) | |
tree | 137cb9542385e3b031ea1c770ca0a0fd44f34022 /src | |
parent | f3e1da894b1e1c3a6ec729613bfa697f1a497ecb (diff) | |
download | weechat-3cb5f25681e9ecbfd21f9241f1f3ccd23efba3e7.zip |
irc: add missing tag "log3" in notify messages
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/irc/irc-notify.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-notify.c b/src/plugins/irc/irc-notify.c index 6659a0b1b..86e828c9e 100644 --- a/src/plugins/irc/irc-notify.c +++ b/src/plugins/irc/irc-notify.c @@ -629,7 +629,8 @@ irc_notify_get_tags (struct t_config_option *option, const char *type, tags = weechat_config_string (option); - snprintf (string, sizeof (string), "irc_notify,irc_notify_%s,nick_%s%s%s", + snprintf (string, sizeof (string), + "irc_notify,irc_notify_%s,nick_%s%s%s,log3", type, nick, (tags && tags[0]) ? "," : "", |