mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Fix rename handling with IPv6 ident
This commit is contained in:
parent
9c21b43ba5
commit
566631bc38
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ def IRCLoop(on_idle,on_identified,on_command):
|
|||
|
||||
elif action == 'NICK':
|
||||
nick = GetNick(who)
|
||||
new_nick = text
|
||||
new_nick = cparts[len(cparts)-1]
|
||||
log_info('%s renamed to %s' % (nick, new_nick))
|
||||
for c in userstable:
|
||||
log_log('checking %s' % c)
|
||||
|
|
Loading…
Reference in a new issue