Compare commits

...

2 Commits

Author SHA1 Message Date
zhangaotian 3ce53a9f09 Merge branch 'main' into Android_release 2024-08-15 12:52:44 +08:00
zhangaotian b42a4a2a02 【Bug】 2024-08-15 12:52:27 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ public class UISyncTipController : UIWindow
private void CloseUI()
{
CloseWindow(true);
if (LevelSelectManager.Instance.CurPassLevelIndex < 1 && !AppInfoManager.Instance.UpdateConfirm)
if (LevelSelectManager.Instance.CurPassLevelIndex < 1)
{
DebugUtil.LogG("开启新手引导!");
GuideMananger.Instance.StartGroupGuide();

View File

@ -37,7 +37,7 @@ public class UIUserAgreementController : UIWindow
private void OnAgree()
{
CloseWindow(true);
if (LevelSelectManager.Instance.CurPassLevelIndex < 1)
if (LevelSelectManager.Instance.CurPassLevelIndex < 1 && !AppInfoManager.Instance.UpdateConfirm)
GuideMananger.Instance.StartGroupGuide();
SettingManager.Instance.SetFirstLaunch();
BIManager.Instance.TrackEventOnce(cfg.BI.EventFirst.fte_privacy_agree);