mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 19:28:07 -06:00
Further simplify the data being sent over to the package manager
CURA-8587
This commit is contained in:
parent
fa7ad7ddb1
commit
477f62916c
3 changed files with 5 additions and 6 deletions
|
@ -635,7 +635,7 @@ class Toolbox(QObject, Extension):
|
|||
elif request_type == "updates":
|
||||
# Tell the package manager that there's a new set of updates available.
|
||||
packages = self._server_response_data[request_type]
|
||||
self._package_manager.setPackagesWithUpdate(dict(zip([p['package_id'] for p in packages], [p for p in packages])))
|
||||
self._package_manager.setPackagesWithUpdate({p['package_id'] for p in packages})
|
||||
|
||||
self.metadataChanged.emit()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue