Closed
Description
There is a little bug in file 'lib/controller.js' which leads to the debug message '... with groupID undefined ...' in the log file.
line 136:
(message.groupid ? ` with groupID ${message.groupID}` : '') +
^^^^^^^
has to be corrected to
(message.groupid ? ` with groupID ${message.groupid}` : '') +
With this change the groupID is reported as expected and sniffing is not necessary anylonger.
Metadata
Assignees
Labels
No labels
Activity