diff --git a/src/octoprint/printer/standard.py b/src/octoprint/printer/standard.py index e5929960..3e91890d 100644 --- a/src/octoprint/printer/standard.py +++ b/src/octoprint/printer/standard.py @@ -640,7 +640,7 @@ class Printer(PrinterInterface, comm.MachineComPrintCallback): printTimeLeft = totalPrintTime - cleanedPrintTime if (totalPrintTime is not None and cleanedPrintTime is not None) else None - if progress: + if progress is not None: progress_int = int(progress * 100) if self._lastProgressReport != progress_int: self._lastProgressReport = progress_int