diff --git a/modules/chankeep.py b/modules/chankeep.py index edbdf96..263c3b5 100644 --- a/modules/chankeep.py +++ b/modules/chankeep.py @@ -276,7 +276,11 @@ def joinSingle(net, channel): :return: relay number that joined the channel :rtype: int """ - eca = emptyChanAllocate(net, [channel]) + if "," in channel: + channels = channel.split(",") + eca = emptyChanAllocate(net, channels) + else: + eca = emptyChanAllocate(net, [channel]) if not eca: return False if not len(eca.keys()) == 1: