Skip to content

Commit 1db4427

Browse files
committed
修复漫画无法加载完全的问题
1 parent 7fe855d commit 1db4427

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/page/comic_read/bloc/page_bloc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class PageBloc extends Bloc<GetPage, PageState> {
6565
for (var doc in temp.data.pages.docs) {
6666
mediaList.add(doc.media);
6767
}
68-
} while (page < pages);
68+
} while (page <= pages);
6969

7070
return mediaList;
7171
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: zephyr
22
description: "使用Flutter开发的三方哔咔应用。"
3-
version: 1.5.1+10
3+
version: 1.5.2+11
44

55
environment:
66
sdk: ">=3.0.0"

0 commit comments

Comments
 (0)