From 02c9ab6a02aab26e6d19cf535ecbe33afa28b40a Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 6 May 2026 18:43:23 +0800 Subject: [PATCH] update profile validator (#13494) --- src/libslic3r/PresetBundle.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libslic3r/PresetBundle.cpp b/src/libslic3r/PresetBundle.cpp index 79a942693d..088125def2 100644 --- a/src/libslic3r/PresetBundle.cpp +++ b/src/libslic3r/PresetBundle.cpp @@ -4549,6 +4549,7 @@ std::pair PresetBundle::load_vendor_configs_ std::string version_str = it.value(); auto config_version = Semver::parse(version_str); if (! config_version) { + ++m_errors; throw ConfigurationError((boost::format("vendor %1%'s config version: %2% invalid\nSuggest cleaning the directory %3% firstly") % vendor_name % version_str % path).str()); } else {