fix JOIN command

This commit is contained in:
Ben Harris 2020-03-13 10:09:19 -04:00
parent d6e684ad10
commit a1ae3eb42a
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ if __name__ == "__main__":
],
)
)
_send(irctokens.format("JOIN", channels))
_send(irctokens.format("JOIN", [",".join(channels)]))
elif line.command == "INVITE":
_send(irctokens.format("JOIN", line.params))