mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06:00
Only subscribe when logged in. (When installing a package from toolbox)
This commit is contained in:
parent
a706b42782
commit
5cedb2933e
1 changed files with 2 additions and 1 deletions
|
@ -149,7 +149,8 @@ class Toolbox(QObject, Extension):
|
|||
|
||||
@pyqtSlot(str)
|
||||
def subscribe(self, package_id: str) -> None:
|
||||
self._cloud_package_manager.subscribe(package_id)
|
||||
if self._application.getCuraAPI().account.isLoggedIn:
|
||||
self._cloud_package_manager.subscribe(package_id)
|
||||
|
||||
def getLicenseDialogPluginFileLocation(self) -> str:
|
||||
return self._license_dialog_plugin_file_location
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue