diff --git a/src/ko/newtoki/build.gradle b/src/ko/newtoki/build.gradle index 5f3a36658..da95f003d 100644 --- a/src/ko/newtoki/build.gradle +++ b/src/ko/newtoki/build.gradle @@ -1,7 +1,7 @@ ext { extName = 'NewToki / ManaToki' extClass = '.TokiFactory' - extVersionCode = 31 + extVersionCode = 32 isNsfw = true } diff --git a/src/ko/newtoki/src/eu/kanade/tachiyomi/extension/ko/newtoki/NewToki.kt b/src/ko/newtoki/src/eu/kanade/tachiyomi/extension/ko/newtoki/NewToki.kt index 5edb4bc39..4d9c8f3bf 100644 --- a/src/ko/newtoki/src/eu/kanade/tachiyomi/extension/ko/newtoki/NewToki.kt +++ b/src/ko/newtoki/src/eu/kanade/tachiyomi/extension/ko/newtoki/NewToki.kt @@ -182,7 +182,7 @@ abstract class NewToki( private fun mangaDetailsParseWithTitleCheck(manga: SManga, document: Document) = mangaDetailsParse(document).apply { // TODO: don't throw when there is download folder rename feature - if (manga.description.isNullOrEmpty() && manga.title != title) { + if (manga.description.isNullOrEmpty() && title.removeSuffix("…") !in manga.title) { throw Exception(titleNotMatch(title)) } }