|
@@ -2782,7 +2782,10 @@ public class ImLiveBroadcastRoomServiceImpl extends ServiceImpl<ImLiveBroadcastR
|
|
|
|
|
|
// 设置酷乐秀状态
|
|
|
CompletableFuture.runAsync(()->{
|
|
|
- klxFeignService.whetherMic(roomUid,whetherMic);
|
|
|
+ com.ym.mec.dto.LiveRoomStatus status = new com.ym.mec.dto.LiveRoomStatus();
|
|
|
+ status.setRoomUid(roomUid);
|
|
|
+ status.setLinkMic(whetherMic == 1 ? 1 : 0);
|
|
|
+ klxFeignService.updateRoomStatus(status);
|
|
|
});
|
|
|
}
|
|
|
|