Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2026-01-02 12:05:31 +08:00
parent 80e007bac6
commit 041af37bb0
67 changed files with 775 additions and 838 deletions

View File

@@ -26,11 +26,10 @@ class PopularSeriesController
Future<void> _getSeriesList() async {
final res = await VideoHttp.popularSeriesList();
if (res.isSuccess) {
final list = res.data;
if (list != null && list.isNotEmpty) {
number = list.first.number!;
seriesList = list;
if (res case Success(:final response)) {
if (response != null && response.isNotEmpty) {
number = response.first.number!;
seriesList = response;
queryData();
} else {
loadingState.value = const Success(null);