mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-22 04:29:01 +08:00
Fix can_upgrade flag for non-working plugins
CURA-5287
This commit is contained in:
parent
1d8c2bea98
commit
50e2db47c8
@ -309,8 +309,12 @@ class PluginBrowser(QObject, Extension):
|
|||||||
try:
|
try:
|
||||||
plugin_object = self._plugin_registry.getPluginObject(plugin_id)
|
plugin_object = self._plugin_registry.getPluginObject(plugin_id)
|
||||||
except PluginNotFoundError:
|
except PluginNotFoundError:
|
||||||
|
# CURA-5287
|
||||||
|
# At this point, we know that this plugin is installed because it passed the previous check, but we cannot
|
||||||
|
# get the PluginObject. This means there is a bug in the plugin or something. So, we always allow to upgrade
|
||||||
|
# this plugin and hopefully that fixes it.
|
||||||
Logger.log("w", "Could not find plugin %s", plugin_id)
|
Logger.log("w", "Could not find plugin %s", plugin_id)
|
||||||
return False
|
return True
|
||||||
|
|
||||||
# Scan plugin server data for plugin with the given id:
|
# Scan plugin server data for plugin with the given id:
|
||||||
for plugin in self._plugins_metadata:
|
for plugin in self._plugins_metadata:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user