diff --git a/lib/pages/live/controller.dart b/lib/pages/live/controller.dart index 56f8f92d..8d56f01a 100644 --- a/lib/pages/live/controller.dart +++ b/lib/pages/live/controller.dart @@ -62,14 +62,14 @@ class LiveController followEnd = true; } followListState.value = LoadingState.success(dataList); - } else if (loadingState.value is Success) { + } else if (followListState.value is Success) { List list = - (loadingState.value as Success).response; + (followListState.value as Success).response; list.addAll(dataList!); if (list.length >= liveCount.value) { followEnd = true; } - loadingState.refresh(); + followListState.refresh(); } followPage++; } else if (isRefresh) {