Merge pull request #1119 from xiaoQQya/develop

fix(play): 修复单端口推流下级自定义 ssrc 时, 流注册后接口仍然超时的问题
pull/1102/head^2
648540858 2023-10-23 09:12:19 +08:00 committed by GitHub
commit 2bb7e23601
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ public class InviteStreamServiceImpl implements IInviteStreamService {
":" + inviteInfo.getDeviceId() +
":" + inviteInfo.getChannelId() +
":" + inviteInfo.getStream() +
":" + inviteInfo.getSsrcInfo().getSsrc();
":" + ssrc;
if (inviteInfoInDb.getSsrcInfo() != null) {
inviteInfoInDb.getSsrcInfo().setSsrc(ssrc);
}