3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-27 21:19:31 +01:00

pr/insp: send oldnick in handle_nick hook

Since hooks are only called after processing is done by the protocol module, plugins would have no way of knowing what the old nick of the user was.
This commit is contained in:
James Lu 2015-07-06 19:44:55 -07:00
parent d833be5f4b
commit 4cc7781f0d

View File

@ -261,8 +261,9 @@ def handle_server(irc, numeric, command, args):
def handle_nick(irc, numeric, command, args):
# <- :70MAAAAAA NICK GL-devel 1434744242
n = irc.users[numeric].nick = args[0]
return {'newnick': n, 'ts': args[1]}
oldnick = irc.users[numeric].nick
newnick = irc.users[numeric].nick = args[0]
return {'newnick': newnick, 'oldnick': oldnick, 'ts': args[1]}
def handle_save(irc, numeric, command, args):
# This is used to handle nick collisions. Here, the client Derp_ already exists,