Fix #2861 (fix /ignore and /unignore (5/78))
This commit is contained in:
parent
a4858f9342
commit
f0dac14e32
1 changed files with 2 additions and 2 deletions
|
@ -779,7 +779,7 @@ class MucTab(ChatTab):
|
|||
"""
|
||||
/ignore <nick>
|
||||
"""
|
||||
if arg is None:
|
||||
if args is None:
|
||||
return self.core.command_help('ignore')
|
||||
|
||||
nick = args[0]
|
||||
|
@ -797,7 +797,7 @@ class MucTab(ChatTab):
|
|||
"""
|
||||
/unignore <nick>
|
||||
"""
|
||||
if arg is None:
|
||||
if args is None:
|
||||
return self.core.command_help('unignore')
|
||||
|
||||
nick = args[0]
|
||||
|
|
Loading…
Reference in a new issue