mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-24 03:29:28 +01:00
clientbot: don't send JOIN hooks for the bot itself when receiving JOIN
Closes #519.
This commit is contained in:
parent
96c89b13b1
commit
c2fc9080cc
@ -828,16 +828,15 @@ class ClientbotWrapperProtocol(IRCCommonProtocol):
|
||||
"""
|
||||
# <- :GL|!~GL@127.0.0.1 JOIN #whatever
|
||||
channel = args[0]
|
||||
self.channels[channel].users.add(source)
|
||||
self.users[source].channels.add(channel)
|
||||
|
||||
# Only fetch modes, TS, and user hosts once we're actually in the channel.
|
||||
# The IRCd will send us a JOIN with our nick!user@host if our JOIN succeeded.
|
||||
if self.pseudoclient and source == self.pseudoclient.uid:
|
||||
self.send('MODE %s' % channel)
|
||||
self._send_who(channel)
|
||||
|
||||
self.channels[channel].users.add(source)
|
||||
self.users[source].channels.add(channel)
|
||||
|
||||
else:
|
||||
self.call_hooks([source, 'CLIENTBOT_JOIN', {'channel': channel}])
|
||||
return {'channel': channel, 'users': [source], 'modes': self.channels[channel].modes}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user