|
@@ -172,7 +172,7 @@ public class TIeInvigilateCallMobileController {
|
|
|
objectMap.put(SystemConstant.MONITOR_STATUS_ + source.name(), status);
|
|
|
TIeExamInvigilateCallLog tIeExamInvigilateCallLog = new TIeExamInvigilateCallLog(recordId, source, liveUrl, MonitorStatusSourceEnum.START);
|
|
|
if (Objects.nonNull(mapParameter.get("type")) || !Objects.equals(mapParameter.get("type"), "")) {
|
|
|
- tIeExamInvigilateCallLog.setType((ExceptionEnum) mapParameter.get("type"));
|
|
|
+ tIeExamInvigilateCallLog.setType(ExceptionEnum.valueOf(String.valueOf(mapParameter.get("type"))));
|
|
|
}
|
|
|
redisUtil.setForHash(RedisKeyHelper.examRecordCacheKey(recordId), objectMap);
|
|
|
|