fix date format

This commit is contained in:
kodjomoustapha
2023-07-11 21:45:27 +01:00
parent 9a78533115
commit f5861ecca4
3 changed files with 3 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ getMangaDetail(MangaModel manga) async {
.split("-.");
manga.chaptersDateUploads = MBridge.listParseDateTime(
chaptersDateUploads, "MMMM dd, yyyy", manga.dateFormatLocale);
chaptersDateUploads, manga.dateFormat, manga.dateFormatLocale);
return manga;
}

View File

@@ -1,6 +1,6 @@
import '../../model/source.dart';
const mangareaderVersion = "0.0.12";
const mangareaderVersion = "0.0.13";
const mangareaderSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/multisrc/mangareader/mangareader-v$mangareaderVersion.dart";
const defaultDateFormat = "MMMM dd, yyyy";