|
@@ -2786,7 +2786,7 @@ public class ImLiveBroadcastRoomServiceImpl extends ServiceImpl<ImLiveBroadcastR
|
|
|
com.ym.mec.dto.LiveRoomStatus status = new com.ym.mec.dto.LiveRoomStatus();
|
|
|
status.setRoomUid(roomUid);
|
|
|
status.setLinkMic(whetherMic == 1 ? 1 : 0);
|
|
|
- klxFeignService.updateRoomStatus(status);
|
|
|
+ klxFeignService.updateRoomStatus(JSON.parseObject(JSON.toJSONString(status)));
|
|
|
});
|
|
|
}
|
|
|
|
|
@@ -2838,7 +2838,7 @@ public class ImLiveBroadcastRoomServiceImpl extends ServiceImpl<ImLiveBroadcastR
|
|
|
this.updateById(imLiveBroadcastRoom);
|
|
|
|
|
|
CompletableFuture.runAsync(()->{
|
|
|
- klxFeignService.updateRoomStatus(JSON.parseObject(JSON.toJSONString(liveRoom), com.ym.mec.dto.LiveRoomStatus.class));
|
|
|
+ klxFeignService.updateRoomStatus(JSON.parseObject(JSON.toJSONString(liveRoom)));
|
|
|
});
|
|
|
return true;
|
|
|
}
|