mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-25 05:12:34 +00:00
Fix sorting logic for chapters
This commit is contained in:
parent
e33af9cbe6
commit
feb0a3635f
1 changed files with 1 additions and 1 deletions
|
|
@ -540,7 +540,7 @@ extension MangaExtensions on Manga {
|
|||
})
|
||||
.where((element) => !filterScanlator.contains(element.scanlator))
|
||||
.toList();
|
||||
List<Chapter> chapters = sortChapter == 1
|
||||
List<Chapter> chapters = sortChapter == 0
|
||||
? chapterList.reversed.toList()
|
||||
: chapterList;
|
||||
if (sortChapter == 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue