mirror of
https://github.com/jlu5/PyLink.git
synced 2024-12-24 19:52:53 +01:00
relay: Fix remoteuser being None for spawned pseudoclients
We're supposed to ignore these anyways... Closes #74.
This commit is contained in:
parent
8f13ae778a
commit
3b79adf4e5
@ -588,7 +588,7 @@ def relayJoins(irc, channel, users, ts, modes):
|
||||
continue
|
||||
except (AttributeError, KeyError): # Nope, it isn't.
|
||||
pass
|
||||
if utils.isInternalClient(irc, user):
|
||||
if utils.isInternalClient(irc, user) or user not in irc.users:
|
||||
# We don't need to clone PyLink pseudoclients... That's
|
||||
# meaningless.
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user