The bug
A clear and concise description of what the bug is.
in line 46 of /home/pi/hermesLedControl_v2.0.13/models/engines/rhasspy.py
we have :
46 configs['mqttPort'] = conf['mqtt'].get('port', 12183)
The port is constantly set and poses a problem for users who have changed it !!!
the modification to be made is:
46 configs['mqttPort'] = conf['mqtt'].get('port', '')
The bug A clear and concise description of what the bug is. in line 46 of /home/pi/hermesLedControl_v2.0.13/models/engines/rhasspy.py we have : 46 configs['mqttPort'] = conf['mqtt'].get('port', 12183) The port is constantly set and poses a problem for users who have changed it !!! the modification to be made is: 46 configs['mqttPort'] = conf['mqtt'].get('port', '')
Bye Arpagor