|
|
|
@ -50,6 +50,7 @@ internal class MimiHentai(context: MangaLoaderContext) :
|
|
|
|
isSearchWithFiltersSupported = true,
|
|
|
|
isSearchWithFiltersSupported = true,
|
|
|
|
isMultipleTagsSupported = true,
|
|
|
|
isMultipleTagsSupported = true,
|
|
|
|
isAuthorSearchSupported = true,
|
|
|
|
isAuthorSearchSupported = true,
|
|
|
|
|
|
|
|
isTagsExclusionSupported = true,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
init {
|
|
|
|
init {
|
|
|
|
@ -83,6 +84,11 @@ internal class MimiHentai(context: MangaLoaderContext) :
|
|
|
|
append("&genre=")
|
|
|
|
append("&genre=")
|
|
|
|
append(filter.tags.joinToString(",") { it.key })
|
|
|
|
append(filter.tags.joinToString(",") { it.key })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filter.tagsExclude.isNotEmpty() -> {
|
|
|
|
|
|
|
|
append("&ex=")
|
|
|
|
|
|
|
|
append(filter.tagsExclude.joinToString(",") { it.key })
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
append("&sort=")
|
|
|
|
append("&sort=")
|
|
|
|
|