mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Catch TypeError when parsing setting version
Someone had a list in the setting version, which then crashed Cura.
This commit is contained in:
parent
640e038ce7
commit
1b8463ba30
1 changed files with 3 additions and 1 deletions
|
|
@ -400,7 +400,9 @@ class CuraContainerRegistry(ContainerRegistry):
|
||||||
try:
|
try:
|
||||||
if int(metadata["setting_version"]) != cura.CuraApplication.CuraApplication.SettingVersion:
|
if int(metadata["setting_version"]) != cura.CuraApplication.CuraApplication.SettingVersion:
|
||||||
return False
|
return False
|
||||||
except ValueError: #Not parsable as int.
|
except ValueError: # Not parsable as int.
|
||||||
|
return False
|
||||||
|
except TypeError: # Expecting string input here, not e.g. list or anything.
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue