Skip to content

Commit

Permalink
revert access code requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
jneilliii committed Oct 30, 2024
1 parent 55ad4c1 commit 3c8b904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octoprint_bambu_printer/printer/bambu_virtual_printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _create_client_connection(self):
self._settings.get(["device_type"]) == ""
or self._settings.get(["serial"]) == ""
or self._settings.get(["username"]) == ""
or (self._settings.get(["access_code"]) == "" and self._settings.get_boolean(["local_mqtt"]))
or self._settings.get(["access_code"]) == ""
):
msg = "invalid settings to start connection with Bambu Printer"
self._log.debug(msg)
Expand Down

0 comments on commit 3c8b904

Please sign in to comment.