mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Fixed 001 for misconfigured servers.
This commit is contained in:
parent
e194e89c85
commit
2d2340bf17
@ -566,7 +566,10 @@ class Irc(IrcCommandDispatcher):
|
||||
welcome = msg.args[1]
|
||||
if not welcome.startswith('Welcome to the '):
|
||||
log.info('Unexpected 001 welcome, guessing at network name.')
|
||||
self.network = msg.prefix
|
||||
else:
|
||||
words = welcome.split()
|
||||
# We assume there is one more word after "Welcome to the ".
|
||||
self.network = words[3].lower()
|
||||
log.info('Setting network to %s.', self.network)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user