JOIN keys should be comma separated too

This commit is contained in:
jesopo 2019-11-08 16:15:58 +00:00
parent 5fcf18313e
commit b4de61d009

View file

@ -34,7 +34,7 @@ class Module(ModuleManager.BaseModule):
if key:
keys_out.append(key)
event["line"].args[0] = ",".join(channels_out)
event["line"].args[1:] = keys_out
event["line"].args[1] = ",".join(keys_out)
@utils.hook("received.324")
@utils.hook("received.mode.channel")