Dream Scan: Fix language locale (#3365)
Fix mishap with "br" instead of "BR"
This commit is contained in:
parent
8e28453769
commit
b64d60e7ed
|
@ -3,7 +3,7 @@ ext {
|
|||
extClass = '.DreamScan'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://dreamscan.com.br'
|
||||
overrideVersionCode = 0
|
||||
overrideVersionCode = 1
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue