Update LewdMangaChecker.kt (#1204)

- Added the `mature` tag
- Added `doujins` (doujins.com) and `luscious` (luscious.net) as filter keywords
This commit is contained in:
gelionexists 2024-06-27 03:01:41 +05:30 committed by GitHub
parent c2eece0fff
commit 7b7a594ddb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,6 +31,7 @@ private fun isHentaiTag(tag: String): Boolean {
tag.contains("nsfw", true) ||
tag.contains("erotica", true) ||
tag.contains("pornographic", true) ||
tag.contains("mature", true) ||
tag.contains("18+", true)
}
@ -52,6 +53,8 @@ private fun isHentaiSource(source: String): Boolean {
source.contains("hbrowse", true) ||
source.contains("nhentai", true) ||
source.contains("erofus", true) ||
source.contains("luscious", true) ||
source.contains("doujins", true) ||
source.contains("multporn", true) ||
source.contains("vcp", true) ||
source.contains("vmp", true) ||