fix date format
This commit is contained in:
parent
a2426dd70a
commit
5c2affb70e
3 changed files with 3 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
|
@ -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;
|
||||
}
|
||||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue