diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py index bc26d7f8b5..efb0b30e4b 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py @@ -134,13 +134,13 @@ class CloudOutputDeviceManager: self._connectToActiveMachine() self._syncing = False - self._account.setSyncState(self.SYNC_SERVICE_NAME, "success") + self._account.setSyncState(self.SYNC_SERVICE_NAME, Account.SyncState.SUCCESS) # Schedule a new update self._update_timer.start() def _onGetRemoteClusterFailed(self): self._syncing = False - self._account.setSyncState(self.SYNC_SERVICE_NAME, "error") + self._account.setSyncState(self.SYNC_SERVICE_NAME, Account.SyncState.ERROR) # Schedule a new update self._update_timer.start()