Skip to content

Commit 4542cd1

Browse files
authored
Merge pull request CloudBotIRC#154 from linuxdaemon/gonzobot+fix-chan-track-who
Fix who line unpacking
2 parents f37137b + 491d4a3 commit 4542cd1

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)