Fixed typo in LynxScans source name (#7887)
This commit is contained in:
parent
35a7ec0ac9
commit
e5d1386d92
|
@ -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("""["\\]"""), "")
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue