diff --git a/src/octoprint/printer/standard.py b/src/octoprint/printer/standard.py index 5d52f588..6e7f831b 100644 --- a/src/octoprint/printer/standard.py +++ b/src/octoprint/printer/standard.py @@ -656,6 +656,8 @@ class Printer(PrinterInterface, comm.MachineComPrintCallback): if filename is not None: if sd: path_in_storage = filename + if path_in_storage.startswith("/"): + path_in_storage = path_in_storage[1:] path_on_disk = None else: path_in_storage = self._fileManager.path_in_storage(FileDestinations.LOCAL, filename)