fix: repeated reply logic

This commit is contained in:
guozhigq
2024-12-08 21:03:18 +08:00
parent d91d4ab62e
commit ef7d84409d

View File

@ -73,7 +73,7 @@ class VideoReplyController extends GetxController {
/// 临时修复
final bool flag = replyList
.any((ReplyItemModel reply) => reply.rpid == replies.first.rpid);
if (replies.length == 1 && flag) {
if (replies.length == 1 && flag && type == 'onLoad') {
replies.clear();
isEnd = true;
}