Skip to content

Commit

Permalink
🐛 fix next ep
Browse files Browse the repository at this point in the history
  • Loading branch information
niuhuan committed Sep 30, 2024
1 parent c6c00cd commit 2213bf1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ci/version.code.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.23
v0.1.24
2 changes: 1 addition & 1 deletion ci/version.info.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
计划
- [x] 下载? / / 高清画质? / / 通过点击进行上一页下一页?

v0.1.23
v0.1.23 / v0.1.24
- [x] ♻️ 修复下一章不能用的问题

v0.1.22
Expand Down
10 changes: 5 additions & 5 deletions lib/screens/comic_reader_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -815,11 +815,11 @@ abstract class _ComicReaderState extends State<_ComicReader> {
// 确定分卷
ComicChapter? v;
ComicChapterInfo? c;
for (var v in widget.comic.chapters) {
for (var c in v.data) {
if (c.chapterId == widget.chapter.chapterId) {
v = v;
c = c;
for (var _v in widget.comic.chapters) {
for (var _c in _v.data) {
if (_c.chapterId == widget.chapter.chapterId) {
v = _v;
c = _c;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A comic reader.

publish_to: 'none'

version: 0.1.23+1
version: 0.1.24+1


environment:
Expand Down

0 comments on commit 2213bf1

Please sign in to comment.