Night Comic: Updated URL (#2304)

* Night Comic: Updated URL

Removed "www." from link

* Set `useNewChapterEndpoint` to true

* Added override for author detail
This commit is contained in:
Smol Ame 2024-04-08 02:47:44 -07:00 committed by Draff
parent b2a8c207f7
commit 124ab39685
2 changed files with 6 additions and 3 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'Night Comic'
extClass = '.NightComic'
themePkg = 'madara'
baseUrl = 'https://www.nightcomic.com'
overrideVersionCode = 1
baseUrl = 'https://nightcomic.com'
overrideVersionCode = 2
}
apply from: "$rootDir/common.gradle"

View File

@ -2,4 +2,7 @@ package eu.kanade.tachiyomi.extension.en.nightcomic
import eu.kanade.tachiyomi.multisrc.madara.Madara
class NightComic : Madara("Night Comic", "https://www.nightcomic.com", "en")
class NightComic : Madara("Night Comic", "https://nightcomic.com", "en") {
override val useNewChapterEndpoint = true
override val mangaDetailsSelectorAuthor = "div.manga-authors > a"
}