mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 04:02:46 +01:00
irclib: fix error when SASL is supported but not enabled for a network
This commit is contained in:
parent
9d93bc6991
commit
c3ddc585b4
@ -1040,7 +1040,7 @@ class Irc(IrcCommandDispatcher):
|
||||
self.network, caps)
|
||||
self.state.capabilities_ack.update(caps)
|
||||
|
||||
if 'sasl' in caps:
|
||||
if 'sasl' in caps and self.sasl:
|
||||
self.sendMsg(ircmsgs.IrcMsg(command='AUTHENTICATE', args=(self.sasl.upper(),)))
|
||||
else:
|
||||
self.sendMsg(ircmsgs.IrcMsg(command='CAP', args=('END',)))
|
||||
|
Loading…
Reference in New Issue
Block a user