修改了离开模式无法给房主送礼物的bug

This commit is contained in:
fengshuo
2021-12-11 15:12:20 +08:00
parent a234677810
commit 71809ca5ba
2 changed files with 21 additions and 0 deletions

View File

@@ -138,6 +138,15 @@
[array addObject:userModel];
}
}
if (self.delegate.getRoomInfo.leaveMode) {
RoomInfoModel * roomInfo= self.delegate.getRoomInfo;
XPGiftUserInfoModel * userModel = [[XPGiftUserInfoModel alloc] init];
userModel.avatar = roomInfo.avatar;
userModel.position = @"-1";
userModel.uid = roomInfo.uid;
[array addObject:userModel];
}
return array;
}