arachnetech / homebridge-mqttthing

A plugin for Homebridge allowing the integration of many different accessory types using MQTT.
Apache License 2.0
462 stars 104 forks source link

Options ignored #657

Open AGReid opened 6 months ago

AGReid commented 6 months ago

In trying to configure certs for mqtts, it appears that the options specified in Homebridge are ignored.

In mqttlib.js:

var options = config.mqttOptions || {};

config.mqttOptions is null.

Suggest that this is changed to:

var options = config || {};