Fix typo in NineHentai (#1610)

This commit is contained in:
arkon 2019-10-03 22:40:19 -04:00 committed by GitHub
parent a187e63a9e
commit 348bfea804
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: NineHentai'
pkgNameSuffix = 'all.ninehentai'
extClass = '.NineHentai'
extVersionCode = 4
extVersionCode = 5
libVersion = '1.2'
}
dependencies {

View File

@ -164,7 +164,7 @@ open class NineHentai : ParsedHttpSource() {
private class GenreList(tags: List<Tag>) : Filter.Group<Tag>("Tags", tags)
private class Sorting : Filter.Sort("Sorting",
arrayOf("Newest", "Popular Rightnow", "Most Fapped", "Most Viewed", "By Title"),
arrayOf("Newest", "Popular Right now", "Most Fapped", "Most Viewed", "By Title"),
Filter.Sort.Selection(1, false))
override fun getFilterList() = FilterList(
@ -217,4 +217,4 @@ open class NineHentai : ParsedHttpSource() {
private const val SEARCH_URL = "/api/getBook"
private const val MANGA_URL = "/api/getBookByID"
}
}
}