Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
moggieuk committed Feb 4, 2025
2 parents 395db13 + 6854a42 commit 9b1dc18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extras/mmu/mmu.py
Original file line number Diff line number Diff line change
Expand Up @@ -3112,7 +3112,7 @@ def _continue_after(self, operation, force_in_print=False, restore=True):
self._ensure_safe_extruder_temperature("pause", wait=True)
self.paused_extruder_temp = None
self._track_pause_end()
if self.is_printing(force_in_print):
if self.is_in_print(force_in_print):
self._enable_runout() # Enable runout/clog detection while printing
self._set_print_state(self.resume_to_state)
self.resume_to_state = "ready"
Expand Down Expand Up @@ -7159,7 +7159,7 @@ def _reset_endless_spool(self):
self._persist_endless_spool()

def _set_gate_status(self, gate, state):
if gate >= 0:
if 0 <= gate < self.num_gates:
if state != self.gate_status[gate]:
self.gate_status = list(self.gate_status) # Ensure that webhooks sees get_status() change
self.gate_status[gate] = state
Expand Down

0 comments on commit 9b1dc18

Please sign in to comment.