Dream Scan: Fix language locale (#3365)

Fix mishap with "br" instead of "BR"
This commit is contained in:
Smol Ame 2024-06-03 03:50:54 -07:00 committed by Draff
parent 8e28453769
commit b64d60e7ed
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 5 additions and 3 deletions

View File

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

View File

@ -7,8 +7,10 @@ import java.util.Locale
class DreamScan : Madara(
"Dream Scan",
"https://dreamscan.com.br",
"pt-br",
SimpleDateFormat("MMMM d, yyyy", Locale("pt", "br")),
"pt-BR",
SimpleDateFormat("MMMM d, yyyy", Locale("pt", "BR")),
) {
override val id: Long = 2058412298484770949
override val useNewChapterEndpoint = true
}