reverse episode list

This commit is contained in:
Moustapha Kodjo Amadou
2024-08-02 20:21:16 +01:00
committed by GitHub
parent 256d7d0e1c
commit 6566bd0c39

View File

@@ -102,7 +102,7 @@ class DiziWatch extends MProvider {
chapter.url = a.getHref; chapter.url = a.getHref;
chapters.add(chapter); chapters.add(chapter);
} }
anime.chapters = chapters; anime.chapters = chapters.reversed.toList();
return anime; return anime;
} }