CURA-5449 Do not check if the name is the correct group name if the

output device is manual create device and it is marked as temporary.
Wait until all the information is retrieved when the request finishes.
This commit is contained in:
Diego Prado Gesto 2018-06-06 14:54:26 +02:00
parent 4652c3be0f
commit 1019f2dd65
3 changed files with 6 additions and 6 deletions

View file

@ -162,7 +162,8 @@ class UM3OutputDevicePlugin(OutputDevicePlugin):
b"name": address.encode("utf-8"),
b"address": address.encode("utf-8"),
b"manual": b"true",
b"incomplete": b"true"
b"incomplete": b"true",
b"temporary": b"true" # Still a temporary device until all the info is retrieved in _onNetworkRequestFinished
}
if instance_name not in self._discovered_devices: