From a762334772bbd60a55bf6dd88a9f20414946571b Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Fri, 11 Oct 2024 20:17:31 +0800 Subject: [PATCH] fix: main reply --- lib/pages/video/detail/reply/controller.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/video/detail/reply/controller.dart b/lib/pages/video/detail/reply/controller.dart index 99460ddd..f765de47 100644 --- a/lib/pages/video/detail/reply/controller.dart +++ b/lib/pages/video/detail/reply/controller.dart @@ -89,7 +89,7 @@ class VideoReplyController extends ReplyController { } if (currentPage != 1) { List list = loadingState.value is Success - ? (loadingState.value as Success).response + ? (loadingState.value as Success).response.replies : []; replies.replies.insertAll(0, list); }