Skip to content

Commit

Permalink
0.8.12
Browse files Browse the repository at this point in the history
fix name error introduced in last update
  • Loading branch information
jneilliii authored Dec 19, 2021
2 parents 93fc24f + 880b5c5 commit 17d4924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octoprint_mqtt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def mqtt_connect(self):
tls_args = dict((key, value) for key, value in broker_tls.items() if value)
self._mqtt.tls_set(**tls_args)

if broker_tls_insecure and tls_active:
if broker_tls_insecure and broker_tls_active:
self._mqtt.tls_insecure_set(broker_tls_insecure)

_retain = self._settings.get_boolean(["broker", "retain"])
Expand Down

0 comments on commit 17d4924

Please sign in to comment.