fix: pip进入 评论区异常

This commit is contained in:
guozhigq
2024-05-26 23:18:37 +08:00
parent fe9d6c76d2
commit fb2be3a376

View File

@ -112,7 +112,7 @@ class _VideoReplyPanelState extends State<VideoReplyPanel>
} }
// 展示二级回复 // 展示二级回复
void replyReply(replyItem) { void replyReply(replyItem, currentReply, loadMore) {
final VideoDetailController videoDetailCtr = final VideoDetailController videoDetailCtr =
Get.find<VideoDetailController>(tag: heroTag); Get.find<VideoDetailController>(tag: heroTag);
if (replyItem != null) { if (replyItem != null) {
@ -120,7 +120,7 @@ class _VideoReplyPanelState extends State<VideoReplyPanel>
videoDetailCtr.fRpid = replyItem.rpid!; videoDetailCtr.fRpid = replyItem.rpid!;
videoDetailCtr.firstFloor = replyItem; videoDetailCtr.firstFloor = replyItem;
videoDetailCtr.showReplyReplyPanel( videoDetailCtr.showReplyReplyPanel(
replyItem.oid, replyItem.rpid!, replyItem); replyItem.oid, replyItem.rpid!, replyItem, currentReply, loadMore);
} }
} }
@ -232,8 +232,10 @@ class _VideoReplyPanelState extends State<VideoReplyPanel>
.replyList[index], .replyList[index],
showReplyRow: true, showReplyRow: true,
replyLevel: replyLevel, replyLevel: replyLevel,
replyReply: (replyItem) => replyReply: (replyItem, currentReply,
replyReply(replyItem), loadMore) =>
replyReply(replyItem, currentReply,
loadMore),
replyType: ReplyType.video, replyType: ReplyType.video,
); );
} }