From 6566bd0c39c4cd36eef5b5ed5e9453bb634591e0 Mon Sep 17 00:00:00 2001 From: Moustapha Kodjo Amadou Date: Fri, 2 Aug 2024 20:21:16 +0100 Subject: [PATCH] reverse episode list --- dart/anime/src/tr/diziwatch/diziwatch.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dart/anime/src/tr/diziwatch/diziwatch.dart b/dart/anime/src/tr/diziwatch/diziwatch.dart index 61744a3b..7f2a84cb 100644 --- a/dart/anime/src/tr/diziwatch/diziwatch.dart +++ b/dart/anime/src/tr/diziwatch/diziwatch.dart @@ -102,7 +102,7 @@ class DiziWatch extends MProvider { chapter.url = a.getHref; chapters.add(chapter); } - anime.chapters = chapters; + anime.chapters = chapters.reversed.toList(); return anime; }