test #1

Merged
klaus merged 94 commits from test into main 2023-08-16 02:30:37 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 3c09047371 - Show all commits

View File

@ -875,7 +875,7 @@ class LiveRoomService(
val roomInfo = roomInfoRepository.findByIdOrNull(roomId)
if (roomInfo != null) {
val room = repository.getLiveRoom(roomId) ?: return
if (room.member != null && room.member!! == member) {
if (room.member != null && room.member!!.id!! == member.id!!) {
room.isActive = false
kickOutService.deleteKickOutData(roomId = room.id!!)
roomInfoRepository.deleteById(roomInfo.roomId)