Commit 6e657714 by Future

单人rtc

parent c0b405bf
......@@ -205,7 +205,7 @@ public class RtcServiceImpl extends UserStateListener implements RtcService {
public Boolean sdpForward(SdpForwardParam sdpForwardParam) {
ImClient client = imClientService.getCurrentClient();
Long rtcChannelId = SnowflakeUtil.getId();
Long rtcChannelId = sdpForwardParam.getChannelId();
// 根据appKey查询appid
ImApplication imApplication = imApplicationService.getCacheById(client.getFkAppid());
......@@ -246,7 +246,7 @@ public class RtcServiceImpl extends UserStateListener implements RtcService {
public Boolean candidateForward(CandidateForwardParam candidateForwardParam) {
ImClient client = imClientService.getCurrentClient();
Long rtcChannelId = SnowflakeUtil.getId();
Long rtcChannelId = candidateForwardParam.getChannelId();
// 根据appKey查询appid
ImApplication imApplication = imApplicationService.getCacheById(client.getFkAppid());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment