Request multi-prefix capability. (GH-1017)

This commit is contained in:
Valentin Lorentz 2015-01-19 17:15:25 +01:00
parent ba6f8fa619
commit 30a026a92a
1 changed files with 2 additions and 2 deletions

View File

@ -962,8 +962,8 @@ class Irc(IrcCommandDispatcher):
elif self.sasl_username and self.sasl_password:
self.sasl = 'plain'
self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('REQ', 'account-notify')))
self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('REQ', 'extended-join')))
self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('REQ',
'account-notify extended-join multi-prefix')))
if self.sasl:
self.queueMsg(ircmsgs.IrcMsg(command='CAP', args=('REQ', 'sasl')))