Skip to content

Commit d0734ad

Browse files
committed
Fix handling of JOIN messages without extended-join data
1 parent a5ecebf commit d0734ad

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
@@ -266,7 +266,7 @@ def on_join(nick, user, host, conn, irc_paramlist):
266266

267267
data = {'ident': user, 'host': host}
268268

269-
if is_cap_available(conn, "extended-join"):
269+
if is_cap_available(conn, "extended-join") and other_data:
270270
acct, realname = other_data
271271
if acct == "*":
272272
acct = None

0 commit comments

Comments
 (0)