mirror of
https://github.com/weechat/weechat.git
synced 2026-07-03 08:13:14 +02:00
irc: display locally away status changes in private buffers (in addition to channels) (closes #117)
This commit is contained in:
@@ -117,6 +117,8 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
* alias: change default command for alias /beep to "/print -beep"
|
||||
* exec: add exec plugin: new command /exec and file exec.conf
|
||||
* guile: fix module used after unload of a script
|
||||
* irc: display locally away status changes in private buffers (in addition to
|
||||
channels) (closes #117)
|
||||
* irc: add value "+" for option irc.look.smart_filter_mode to use modes from
|
||||
server prefixes (this is now the default value) (closes #90)
|
||||
* irc: fix extract of channel in parser for JOIN/PART messages when there is a
|
||||
|
||||
@@ -671,7 +671,8 @@ irc_command_display_away (struct t_irc_server *server, const char *string1,
|
||||
for (ptr_channel = server->channels; ptr_channel;
|
||||
ptr_channel = ptr_channel->next_channel)
|
||||
{
|
||||
if (ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
|
||||
if ((ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
|
||||
|| (ptr_channel->type == IRC_CHANNEL_TYPE_PRIVATE))
|
||||
{
|
||||
weechat_printf_tags (ptr_channel->buffer,
|
||||
"away_info",
|
||||
|
||||
Reference in New Issue
Block a user