From b87b38bd7c003a03f27145ce3aabcf6c2c2122fe Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Mon, 27 Jul 2026 15:29:35 +0800 Subject: [PATCH] fix: wrong version checking --- src/slic3r/Utils/PresetUpdater.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/slic3r/Utils/PresetUpdater.cpp b/src/slic3r/Utils/PresetUpdater.cpp index 6d94af35d7..443378242e 100644 --- a/src/slic3r/Utils/PresetUpdater.cpp +++ b/src/slic3r/Utils/PresetUpdater.cpp @@ -1094,10 +1094,9 @@ void PresetUpdater::priv::check_installed_vendor_profiles() const Semver resource_ver = get_version_from_json(file_path); Semver vendor_ver = get_version_from_json(path_in_vendor.string()); - bool version_match = ((resource_ver.maj() == vendor_ver.maj()) && (resource_ver.min() == vendor_ver.min())); - - if (!version_match || (vendor_ver < resource_ver)) { - BOOST_LOG_TRIVIAL(info) << "[Orca Updater]:found vendor "<