From 19b11b66a0ab04be8b707b52c525d2f58a6f4eb2 Mon Sep 17 00:00:00 2001 From: xiaoyeliu Date: Thu, 27 Nov 2025 12:16:53 +0800 Subject: [PATCH] Fix: change url of login from pre to formal --- src/slic3r/GUI/WebSMUserLoginDialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/WebSMUserLoginDialog.cpp b/src/slic3r/GUI/WebSMUserLoginDialog.cpp index 2fcc888e0d..1df1e1efd0 100644 --- a/src/slic3r/GUI/WebSMUserLoginDialog.cpp +++ b/src/slic3r/GUI/WebSMUserLoginDialog.cpp @@ -51,9 +51,9 @@ SMUserLogin::SMUserLogin(bool isLogout) : wxDialog((wxWindow *) (wxGetApp().main m_userInfoUrl = "https://account.snapmaker.com/api/common/accounts/current"; m_home_url = "https://www.snapmaker.com/"; } else { - TargetUrl = "https://pre.id.snapmaker.cn?from=orca"; - LogoutUrl = "https://pre.id.snapmaker.cn/logout?from=orca"; - m_hostUrl = "https://pre.id.snapmaker.cn"; + TargetUrl = "https://id.snapmaker.cn?from=orca"; + LogoutUrl = "https://id.snapmaker.cn/logout?from=orca"; + m_hostUrl = "https://id.snapmaker.cn"; m_accountUrl = "https://api.snapmaker.cn"; m_userInfoUrl = "https://api.snapmaker.cn/api/common/accounts/current"; m_home_url = "https://www.snapmaker.cn/";