mirror of
https://github.com/weechat/weechat.git
synced 2026-06-28 13:56:37 +02:00
irc: fix read of MODES server value when in commands /op, /deop, /voice, /devoice, /halfop, /dehalfop
This commit is contained in:
@@ -37,6 +37,8 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
|
||||
* api: add integer return code for functions hook_{signal|hsignal}_send
|
||||
* alias: change default command for alias /beep to "/print -beep"
|
||||
* guile: fix module used after unload of a script
|
||||
* irc: fix read of MODES server value when in commands /op, /deop, /voice,
|
||||
/devoice, /halfop, /dehalfop
|
||||
* irc: set option irc.network.whois_double_nick to "off" by default
|
||||
* irc: fix parsing of nick in host when '!' is not found (bug #41640)
|
||||
* lua: fix interpreter used after unload of a script
|
||||
|
||||
@@ -121,7 +121,6 @@ irc_command_mode_nicks (struct t_irc_server *server,
|
||||
max_modes = 1;
|
||||
if (max_modes > 128)
|
||||
max_modes = 128;
|
||||
max_modes = (number >= 1) ? number : 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user