修复国标级联点播未使用自动自定义SSRC的BUG
This commit is contained in:
@@ -54,7 +54,7 @@ public class SipInviteSessionManager {
|
||||
List<SsrcTransaction> result = new ArrayList<>();
|
||||
for (Object keyObj : scanResult) {
|
||||
SsrcTransaction ssrcTransaction = (SsrcTransaction)redisTemplate.opsForValue().get(keyObj);
|
||||
if (ssrcTransaction != null && ssrcTransaction.getDeviceId().equals(deviceId)) {
|
||||
if (ssrcTransaction != null && deviceId.equals(ssrcTransaction.getDeviceId())) {
|
||||
result.add(ssrcTransaction);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user