浏览代码

!10624 调整同步实体启动失败时的兜底话术
Merge pull request !10624 from 80174847/oilyang_fixed_everything

杨诗友80174847 9 月之前
父节点
当前提交
de3f26eaf4
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Module/mod_vtmloader/VtmLoaderFSM.cpp

+ 2 - 2
Module/mod_vtmloader/VtmLoaderFSM.cpp

@@ -411,7 +411,7 @@ void CVtmLoaderFSM::s1_on_entry()
 			if (errCode != Error_Succeed) {
 				CSimpleStringA tmpAuthErrMsg("");
 				if (GetEntityBase()->GetFunction()->GetSysVar("AuthErrMsg", tmpAuthErrMsg) == Error_Succeed && tmpAuthErrMsg.IsNullOrEmpty())
-					GetEntityBase()->GetFunction()->SetSysVar("AuthErrMsg", CSimpleStringA::Format("%s 启动失败", it->first.GetData()).GetData());
+					GetEntityBase()->GetFunction()->SetSysVar("AuthErrMsg", CSimpleStringA::Format("%s 启动失败,请尝试重启应用或重启系统恢复", it->first.GetData()).GetData());
 				if (it->first.Compare("SIPPhone") == 0)
 					m_bSIPPhoneStartFail = true;
 
@@ -559,7 +559,7 @@ void CVtmLoaderFSM::s2_on_entry()
 			{
 				CSimpleStringA tmpAuthErrMsg("");
 				if (GetEntityBase()->GetFunction()->GetSysVar("AuthErrMsg", tmpAuthErrMsg) == Error_Succeed && tmpAuthErrMsg.IsNullOrEmpty())
-					GetEntityBase()->GetFunction()->SetSysVar("AuthErrMsg", CSimpleStringA::Format("%s 启动失败", it->first.GetData()).GetData());
+					GetEntityBase()->GetFunction()->SetSysVar("AuthErrMsg", CSimpleStringA::Format("%s 启动失败,请尝试重启应用或重启系统恢复", it->first.GetData()).GetData());
 				if (it->first.Compare("SIPPhone") == 0)
 					m_bSIPPhoneStartFail = true;
 				DbgWithLink(LOG_LEVEL_ERROR, LOG_TYPE_SYSTEM)("启动失败:%s", it->first.GetData());