【Bug】

Android_release
zhangaotian 2024-08-15 12:52:27 +08:00
parent 98495d6a7e
commit b42a4a2a02
2 changed files with 2 additions and 2 deletions

View File

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

View File

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