Fixed typo in LynxScans source name (#7887)

This commit is contained in:
Narin 2021-06-26 04:30:54 -07:00 committed by GitHub
parent 35a7ec0ac9
commit e5d1386d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -4,11 +4,11 @@ import eu.kanade.tachiyomi.multisrc.genkan.Genkan
import org.jsoup.nodes.Document
import eu.kanade.tachiyomi.source.model.Page
class LynxScans : Genkan("Lynx Scans", "https://lynxscans.com", "en") {
class LynxScans : Genkan("LynxScans", "https://lynxscans.com", "en") {
override fun pageListParse(document: Document): List<Page> {
val pages = mutableListOf<Page>()
val allImages = document.select("div#pages-container + script").first().data()
.substringAfter("[").substringBefore("];")
.replace(Regex("""["\\]"""), "")

View File

@ -17,7 +17,7 @@ class GenkanGenerator : ThemeSourceGenerator {
SingleLang("ZeroScans", "https://zeroscans.com", "en"),
SingleLang("The Nonames Scans", "https://the-nonames.com", "en"),
SingleLang("Edelgarde Scans", "https://edelgardescans.com", "en"),
SingleLang("LynxScans", "https://lynxscans.com", "en", overrideVersionCode = 2),
SingleLang("LynxScans", "https://lynxscans.com", "en", overrideVersionCode = 3),
)
companion object {