Browse Source

Fix sending another file after aborting an upload - CURA-4398

ChrisTerBeke 7 years ago
parent
commit
6c51034e5f
1 changed files with 3 additions and 0 deletions
  1. 3 0
      plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py

+ 3 - 0
plugins/UM3NetworkPrinting/NetworkPrinterOutputDevice.py

@@ -530,6 +530,9 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
         if self._post_reply is None:
             return
 
+        # Indicate uploading was finished (so another file can be send)
+        self._write_finished = True
+
         try:
             try:
                 self._post_reply.uploadProgress.disconnect(self._onUploadProgress)