irc: fix duplicate sender name in display of notice (closes #87)
This commit is contained in:
parent
c8103f14d2
commit
14850dfa9c
@ -105,6 +105,7 @@ 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: fix duplicate sender name in display of notice (closes #87)
|
||||
* irc: fix refresh of buffer name in bar items after join/part/kick/kill
|
||||
(closes #86)
|
||||
* irc: display message 936 (censored word) on channel instead of server buffer
|
||||
|
@ -1366,7 +1366,7 @@ IRC_PROTOCOL_CALLBACK(notice)
|
||||
}
|
||||
else
|
||||
{
|
||||
if (address && address[0])
|
||||
if (address && address[0] && (strcmp (nick, address) != 0))
|
||||
{
|
||||
weechat_printf_date_tags (ptr_buffer,
|
||||
date,
|
||||
|
Loading…
x
Reference in New Issue
Block a user