Fix Adu Manga URL & date format (#3763)

* Fixed baseURL mismatch

* Replaced `Locale` in `dateFormat` to `en`

* Removed unnecessary `dateFormat` override
This commit is contained in:
Smol Ame 2024-06-28 03:47:45 -07:00 committed by GitHub
parent 6f432402a0
commit 0431eddddc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 5 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.AduManga'
themePkg = 'mangathemesia'
baseUrl = 'https://adumanga.com'
overrideVersionCode = 0
overrideVersionCode = 1
}
apply from: "$rootDir/common.gradle"

View File

@ -1,12 +1,9 @@
package eu.kanade.tachiyomi.extension.tr.adumanga
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import java.text.SimpleDateFormat
import java.util.Locale
class AduManga : MangaThemesia(
"Adu Manga",
"https://www.mangacim.com",
"https://adumanga.com",
"tr",
dateFormat = SimpleDateFormat("MMMM d, yyy", Locale("tr")),
)