3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-24 03:29:28 +01:00

relay: fix PMs across the relay (7d919e64 regression)

This commit is contained in:
James Lu 2015-10-01 16:40:58 -07:00
parent 55d9eb240f
commit f20e677577

View File

@ -687,7 +687,7 @@ def handle_messages(irc, numeric, command, args):
notice = (command in ('NOTICE', 'PYLINK_SELF_NOTICE'))
target = args['target']
text = args['text']
if utils.isInternalClient(irc, target):
if utils.isInternalClient(irc, numeric):
return
relay = getRelay((irc.name, target))
remoteusers = relayusers[(irc.name, numeric)]