[Mangadex] add language for chapters with out specified language (#6062)
* Add othere languege to Mangadex * Update build.gradle
This commit is contained in:
parent
b49905c748
commit
9e41b7016c
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'MangaDex'
|
||||
pkgNameSuffix = 'all.mangadex'
|
||||
extClass = '.MangaDexFactory'
|
||||
extVersionCode = 103
|
||||
extVersionCode = 104
|
||||
libVersion = '1.2'
|
||||
containsNsfw = true
|
||||
}
|
||||
|
|
|
@ -47,7 +47,8 @@ class MangaDexFactory : SourceFactory {
|
|||
MangaDexLithuanian(),
|
||||
MangaDexHebrew(),
|
||||
MangaDexHindi(),
|
||||
MangaDexNorwegian()
|
||||
MangaDexNorwegian(),
|
||||
MangaDexOther()
|
||||
)
|
||||
}
|
||||
class MangaDexEnglish : MangaDex("en", "gb")
|
||||
|
@ -91,3 +92,4 @@ class MangaDexLithuanian : MangaDex("lt", "il")
|
|||
class MangaDexHebrew : MangaDex("he", "il")
|
||||
class MangaDexHindi : MangaDex("hi", "in")
|
||||
class MangaDexNorwegian : MangaDex("no", "no")
|
||||
class MangaDexOther : MangaDex("other", " ")
|
||||
|
|
Loading…
Reference in New Issue