From 4c13971c157ac014b6878c19516dc3aaf55c4f5d Mon Sep 17 00:00:00 2001 From: Chopper <156493704+ttony2chopper@users.noreply.github.com> Date: Wed, 17 Apr 2024 10:40:10 -0300 Subject: [PATCH] Manhastro: Fix date format (#2460) Fix date format --- src/pt/manhastro/build.gradle | 2 +- .../src/eu/kanade/tachiyomi/extension/pt/manhastro/Manhastro.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pt/manhastro/build.gradle b/src/pt/manhastro/build.gradle index b6d6901ef..cefc639c5 100644 --- a/src/pt/manhastro/build.gradle +++ b/src/pt/manhastro/build.gradle @@ -3,7 +3,7 @@ ext { extClass = '.Manhastro' themePkg = 'madara' baseUrl = 'https://manhastro.com' - overrideVersionCode = 3 + overrideVersionCode = 4 isNsfw = true } diff --git a/src/pt/manhastro/src/eu/kanade/tachiyomi/extension/pt/manhastro/Manhastro.kt b/src/pt/manhastro/src/eu/kanade/tachiyomi/extension/pt/manhastro/Manhastro.kt index ac6b9f2b0..68924ff63 100644 --- a/src/pt/manhastro/src/eu/kanade/tachiyomi/extension/pt/manhastro/Manhastro.kt +++ b/src/pt/manhastro/src/eu/kanade/tachiyomi/extension/pt/manhastro/Manhastro.kt @@ -15,7 +15,7 @@ class Manhastro : Madara( "Manhastro", "https://manhastro.com", "pt-BR", - SimpleDateFormat("MMMMM dd, yyyy", Locale("pt", "BR")), + SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")), ) { override val client: OkHttpClient = super.client.newBuilder()