From 296bbe3dd6548c0275b17d7f6b344f2341e10f28 Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Wed, 30 Jul 2025 20:40:26 +0800 Subject: [PATCH] FIX: the location of network_plugins.json jira: [STUDIO-13745] Change-Id: I5ead381e94046179d44c02e3d7d9964fbe9aff36 (cherry picked from commit 6454dfe45bfa2c2deeb1c1aa0f46b2479d418f8b) --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index a9d8c2394b..9c995c1e94 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -9342,7 +9342,7 @@ void Plater::priv::update_plugin_when_launch(wxCommandEvent &event) std::string data_dir_str = data_dir(); boost::filesystem::path data_dir_path(data_dir_str); auto cache_folder = data_dir_path / "ota"; - std::string changelog_file = cache_folder.string() + "/network_plugins.json"; + std::string changelog_file = cache_folder.string() + "/plugins/network_plugins.json"; UpdatePluginDialog dlg(wxGetApp().mainframe); dlg.update_info(changelog_file);