mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 19:28:07 -06:00
Fix setting available version numbers
CURA-8587
This commit is contained in:
parent
477f62916c
commit
0cfd576c8f
1 changed files with 1 additions and 1 deletions
|
@ -645,7 +645,7 @@ class Toolbox(QObject, Extension):
|
|||
# This function goes through all known remote versions of a package and notifies the package manager of this change
|
||||
def _notifyPackageManager(self):
|
||||
for package in self._server_response_data["packages"]:
|
||||
self._package_manager.addAvailablePackageVersion(package["package_id"], Version(package["package_version"]), package)
|
||||
self._package_manager.addAvailablePackageVersion(package["package_id"], Version(package["package_version"]))
|
||||
|
||||
def _onDownloadFinished(self, reply: "QNetworkReply") -> None:
|
||||
self.resetDownload()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue