[6.7.0] merge 6.6.4 and replace sop setting to new ,plus fix bug

This commit is contained in:
EmArrow
2024-10-17 18:11:11 +08:00
parent 2f06ddb762
commit c63fc2d757
5 changed files with 12 additions and 12 deletions

View File

@@ -30,10 +30,10 @@ object CallerAutopilotStatisticsListenerManager : CallerBase<IMoGoAutopilotStati
)
} else {
CallerTrace.write("AutopilotStatistics", mapOf("status" to it.status, "failedMessage" to (it.failedMessage?.msg?:""),
"reqSource" to it.req.source,
"reqMode" to it.req.mode,
"reqCmdOrderId" to (it.req.cmdInfo.orderId?:""),
"reqCmdFirstFlag" to it.req.cmdInfo.firstAutopilotFlag,
"reqSource" to it.req?.source,
"reqMode" to it.req?.mode,
"reqCmdOrderId" to (it.req?.cmdInfo?.orderId?:""),
"reqCmdFirstFlag" to it.req?.cmdInfo?.firstAutopilotFlag,
"usedTime" to it.usedTime,
"isDemoMode" to FunctionBuildConfig.isDemoMode,
"isTakeoverRemind" to FunctionBuildConfig.isTakeoverRemind))