mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 20:46:01 +08:00
Revision number is no longer taken into account
CURA-2475
This commit is contained in:
parent
f71b23c72a
commit
2688928467
@ -167,9 +167,9 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice):
|
|||||||
self._compressing_print = False
|
self._compressing_print = False
|
||||||
|
|
||||||
printer_type = self._properties.get(b"machine", b"").decode("utf-8")
|
printer_type = self._properties.get(b"machine", b"").decode("utf-8")
|
||||||
if printer_type == "9511.0":
|
if printer_type.startswith("9511"):
|
||||||
self._updatePrinterType("ultimaker3_extended")
|
self._updatePrinterType("ultimaker3_extended")
|
||||||
elif printer_type == "9066.0":
|
elif printer_type.startswith("9066"):
|
||||||
self._updatePrinterType("ultimaker3")
|
self._updatePrinterType("ultimaker3")
|
||||||
else:
|
else:
|
||||||
self._updatePrinterType("unknown")
|
self._updatePrinterType("unknown")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user