Skip to content

Commit

Permalink
fix: self signed mqtt certs getting rejected (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbender9 authored Aug 6, 2024
1 parent 1bc4591 commit 0d25836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ module.exports = function (app) {
app.debug('using mqtt url %s', url)

var client = mqtt.connect(url, {
rejectUnauthorized: true,
rejectUnauthorized: false,
username: '',
password: options.MQTT.password
})
Expand Down

0 comments on commit 0d25836

Please sign in to comment.