Commit 314423bd011cffcbf8201047c76cc8e9127e86f2
1 parent
9ff1613d
修复级联点播的空指针异常 #864
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/genersoft/iot/vmp/service/impl/PlayServiceImpl.java
| ... | ... | @@ -368,7 +368,7 @@ public class PlayServiceImpl implements IPlayService { |
| 368 | 368 | return; |
| 369 | 369 | } |
| 370 | 370 | callback.run(InviteErrorCode.SUCCESS.getCode(), |
| 371 | - InviteErrorCode.SUCCESS.getMsg(), null); | |
| 371 | + InviteErrorCode.SUCCESS.getMsg(), streamInfo); | |
| 372 | 372 | inviteStreamService.call(InviteSessionType.PLAY, device.getDeviceId(), channelId, null, |
| 373 | 373 | InviteErrorCode.SUCCESS.getCode(), |
| 374 | 374 | InviteErrorCode.SUCCESS.getMsg(), | ... | ... |