mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 09:28:58 +08: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
@ -402,6 +402,8 @@ class CuraContainerRegistry(ContainerRegistry):
|
||||
return False
|
||||
except ValueError: # Not parsable as int.
|
||||
return False
|
||||
except TypeError: # Expecting string input here, not e.g. list or anything.
|
||||
return False
|
||||
return True
|
||||
|
||||
def _configureProfile(self, profile: InstanceContainer, id_seed: str, new_name: str, machine_definition_id: str) -> Tuple[bool, Optional[str]]:
|
||||
|
Loading…
x
Reference in New Issue
Block a user