Skip to content

Commit 491d4a3

Browse files
committed
Fix who line unpacking
1 parent 9bfdbca commit 491d4a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/chan_track.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ def on_away(conn, nick, irc_paramlist):
445445

446446
@hook.irc_raw('352')
447447
def on_who(conn, irc_paramlist):
448-
_, ident, host, server, nick, status, realname = irc_paramlist
448+
_, _, ident, host, server, nick, status, realname = irc_paramlist
449449
realname = realname.split(None, 1)[1]
450450
user = conn.memory["users"][nick]
451451
status = list(status)

0 commit comments

Comments
 (0)