[6.2.0]录包修改上报reason内容
This commit is contained in:
@@ -399,7 +399,11 @@ class InitiativeBadCaseWindow constructor(activity: Activity) : View.OnTouchList
|
||||
itx["filename"] = recordFileName?:"" //bag包文件地址
|
||||
itx["filesize"] = "0" //bag包文件大小
|
||||
itx["key"] = recordKey.toString() //key
|
||||
itx["reason"] = "$uploadReason 语音内容:$reasonDetail" //采集原因
|
||||
if(reasonDetail.isNullOrEmpty()){
|
||||
itx["reason"] = uploadReason.toString()
|
||||
}else{
|
||||
itx["reason"] = "$uploadReason 语音内容:$reasonDetail" //采集原因
|
||||
}
|
||||
itx["duration"] = BadCaseConfig.totalDuration.toString() //采集时长,固定为20S
|
||||
itx["startTime"] = System.currentTimeMillis().toString() //上报时间(时间戳格式)
|
||||
itx["channel"] = "1" //渠道
|
||||
|
||||
@@ -362,7 +362,11 @@ class PassiveBadCaseWindow constructor(activity: Activity) : View.OnTouchListene
|
||||
itx["filename"] = recordFileName?:"" //bag包文件地址
|
||||
itx["filesize"] = "0" //bag包文件大小
|
||||
itx["key"] = recordKey?:"" //key
|
||||
itx["reason"] = "$uploadReason 语音内容:$reasonDetail" //采集原因
|
||||
if(reasonDetail.isNullOrEmpty()){
|
||||
itx["reason"] = uploadReason
|
||||
}else{
|
||||
itx["reason"] = "$uploadReason 语音内容:$reasonDetail" //采集原因
|
||||
}
|
||||
itx["duration"] = BadCaseConfig.totalDuration.toString() //采集时长,固定为20S
|
||||
itx["startTime"] = System.currentTimeMillis().toString() //上报时间(时间戳格式)
|
||||
itx["channel"] = "0" //渠道
|
||||
|
||||
Reference in New Issue
Block a user