diff --git a/src/octoprint/util/comm.py b/src/octoprint/util/comm.py index b6f4bcaa..0e2da7b4 100644 --- a/src/octoprint/util/comm.py +++ b/src/octoprint/util/comm.py @@ -911,7 +911,7 @@ class MachineCom(object): if self._resendDelta is not None: self._resendNextCommand() elif not self._commandQueue.empty() and not self.isStreaming(): - self._sendCommand(self._commandQueue.get()) + self._sendCommand(self._commandQueue.get(), True) else: self._sendNext() elif line.lower().startswith("resend") or line.lower().startswith("rs"):