mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Also check btemporary value
CURA-5449
This commit is contained in:
parent
04ecc55e3c
commit
3b46816632
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice):
|
||||||
self._last_manager_create_time = time()
|
self._last_manager_create_time = time()
|
||||||
self._manager.authenticationRequired.connect(self._onAuthenticationRequired)
|
self._manager.authenticationRequired.connect(self._onAuthenticationRequired)
|
||||||
|
|
||||||
if b'temporary' not in self._properties:
|
if self._properties.get(b"temporary", b"false") != b"true":
|
||||||
Application.getInstance().getMachineManager().checkCorrectGroupName(self.getId(), self.name)
|
Application.getInstance().getMachineManager().checkCorrectGroupName(self.getId(), self.name)
|
||||||
|
|
||||||
def _registerOnFinishedCallback(self, reply: QNetworkReply, onFinished: Optional[Callable[[Any, QNetworkReply], None]]) -> None:
|
def _registerOnFinishedCallback(self, reply: QNetworkReply, onFinished: Optional[Callable[[Any, QNetworkReply], None]]) -> None:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue