From ac25fec14a89b3d94cb36c735e989bd1ac8fba4b Mon Sep 17 00:00:00 2001 From: Ian Chua Date: Fri, 22 May 2026 19:03:20 +0800 Subject: [PATCH] fix: 409 sync push on app start (#13796) revert prev commits --- src/libslic3r/Preset.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index ade6f42c29..62d44be8e3 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -581,14 +581,6 @@ void Preset::load_info(const std::string& file) catch (...) { return; } - - //TODO: workaround for current info file convert, will remove it later - if (this->updated_time == 0) { - this->updated_time = (long long)Slic3r::Utils::get_current_time_utc(); - //this->sync_info = "update"; - BOOST_LOG_TRIVIAL(info) << boost::format("old info file, updated time to %1%") % this->updated_time; - save_info(); - } } void Preset::save_info(std::string file)