domein and idchannel are both 35 long.
communication.py line 122:
domain = u'bots_communication_failure_' + self.channeldict['idchannel']
Since the prefix added is 27 long, only channel names of 8 long can fit (using
MySQL db that enforces max length)
quick fix would be to shorten the prefix to a single character, eg:
domain = u'#' + self.channeldict['idchannel']
Original issue reported on code.google.com by mjg1964 on 5 Apr 2015 at 11:28
Original issue reported on code.google.com by
mjg1964
on 5 Apr 2015 at 11:28