mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
Check the whole list for firmware-updates instead of just the first added container.
This commit is contained in:
parent
487ef52c66
commit
d8ed3d6074
2 changed files with 6 additions and 4 deletions
|
@ -34,6 +34,7 @@ def default_parse_version_response(response: str) -> Version:
|
|||
|
||||
|
||||
## This job checks if there is an update available on the provided URL.
|
||||
|
||||
class FirmwareUpdateCheckerJob(Job):
|
||||
MACHINE_PER_NAME = \
|
||||
{
|
||||
|
@ -155,7 +156,7 @@ class FirmwareUpdateCheckerJob(Job):
|
|||
message.actionTriggered.connect(self._callback)
|
||||
message.show()
|
||||
else:
|
||||
Logger.log('i', "No machine with name {0} in list of firmware to check.".format(repr(machine_id)))
|
||||
Logger.log('i', "No machine with name {0} in list of firmware to check.".format(machine_name))
|
||||
|
||||
except Exception as e:
|
||||
Logger.log("w", "Failed to check for new version: %s", e)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue