소스 검색

streamId bug fix

wangliang 4 년 전
부모
커밋
6ed433b72d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      themis-business/src/main/java/com/qmth/themis/business/service/impl/TEMobileServiceImpl.java

+ 1 - 1
themis-business/src/main/java/com/qmth/themis/business/service/impl/TEMobileServiceImpl.java

@@ -130,7 +130,7 @@ public class TEMobileServiceImpl implements TEMobileService {
         ret.setMonitorKey(ExamRecordCacheUtil.getMonitorKey(recordId));
         ret.setMonitorVideoSource(monitorVideoSource);
         ret.setMonitorAudioEnable(getMonitorAudioEnable(recordId, monitorVideoSource));
-        ret.setMonitorStreamId(monitorUtil.getMonitorDomain().getPrefix() + "_" + recordId + monitorVideoSource.name().toLowerCase());
+        ret.setMonitorStreamId(monitorUtil.getMonitorDomain().getPrefix() + "_" + recordId + "_" + monitorVideoSource.name().toLowerCase());
         Source sourceEnum = monitorVideoSource.getSessionSource();
         ExamStudentCacheBean es = examStudentService
                 .getExamStudentCacheBean(ExamRecordCacheUtil.getExamStudentId(ret.getRecordId()));