From c8e3c4ff1224d4f0775cadb0a00b47b36860b55d Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Fri, 30 Oct 2020 12:49:39 +0100 Subject: [PATCH] Display the queue by default if there are no capabilities If the capabilities list is missing, display the queue anyway, even if it is always empty CURA-7784 --- plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 0c6ed4548a..82b8c1da62 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -291,7 +291,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): def supportsPrintJobQueue(self) -> bool: """Gets whether the printer supports a queue""" - return "queue" in self._cluster.capabilities if self._cluster.capabilities else False + return "queue" in self._cluster.capabilities if self._cluster.capabilities else True def setJobState(self, print_job_uuid: str, state: str) -> None: """Set the remote print job state."""