remove dead delegatedsources (#701)
This commit is contained in:
@@ -48,7 +48,6 @@ private fun isHentaiSource(source: String): Boolean {
|
||||
source.contains("pururin", true) ||
|
||||
source.contains("simply hentai", true) ||
|
||||
source.contains("tsumino", true) ||
|
||||
source.contains("hitomi.la", true) ||
|
||||
source.contains("8muses", true) ||
|
||||
source.contains("hbrowse", true) ||
|
||||
source.contains("nhentai", true) ||
|
||||
|
||||
@@ -6,7 +6,6 @@ import exh.source.EH_SOURCE_ID
|
||||
import exh.source.EXH_SOURCE_ID
|
||||
import exh.source.PURURIN_SOURCE_ID
|
||||
import exh.source.TSUMINO_SOURCE_ID
|
||||
import exh.source.hitomiSourceIds
|
||||
import exh.source.mangaDexSourceIds
|
||||
import exh.source.nHentaiSourceIds
|
||||
import java.util.Locale
|
||||
@@ -22,7 +21,6 @@ object SourceTagsUtil {
|
||||
sourceId == EXH_SOURCE_ID ||
|
||||
sourceId == EH_SOURCE_ID ||
|
||||
sourceId in nHentaiSourceIds ||
|
||||
sourceId in hitomiSourceIds ||
|
||||
sourceId in mangaDexSourceIds ||
|
||||
sourceId == PURURIN_SOURCE_ID ||
|
||||
sourceId == TSUMINO_SOURCE_ID
|
||||
@@ -34,7 +32,6 @@ object SourceTagsUtil {
|
||||
}
|
||||
if (parsed?.namespace != null) {
|
||||
when (sourceId) {
|
||||
in hitomiSourceIds -> wrapTagHitomi(parsed.namespace!!, parsed.name.substringBefore('|').trim())
|
||||
in nHentaiSourceIds -> wrapTagNHentai(parsed.namespace!!, parsed.name.substringBefore('|').trim())
|
||||
in mangaDexSourceIds -> parsed.name
|
||||
PURURIN_SOURCE_ID -> parsed.name.substringBefore('|').trim()
|
||||
@@ -55,12 +52,6 @@ object SourceTagsUtil {
|
||||
"$namespace:$tag$"
|
||||
}
|
||||
|
||||
private fun wrapTagHitomi(namespace: String, tag: String) = if (tag.contains(spaceRegex)) {
|
||||
"$namespace:$tag".replace("\\s".toRegex(), "_")
|
||||
} else {
|
||||
"$namespace:$tag"
|
||||
}
|
||||
|
||||
private fun wrapTagNHentai(namespace: String, tag: String) = if (tag.contains(spaceRegex)) {
|
||||
if (namespace == "tag") {
|
||||
""""$tag""""
|
||||
|
||||
Reference in New Issue
Block a user