-
Notifications
You must be signed in to change notification settings - Fork 469
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIx LynxScans: use standard Mangastream (#6091)
- Loading branch information
Showing
1 changed file
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
import Genkan from './templates/Genkan.mjs'; | ||
import WordPressMangastream from './templates/WordPressMangastream.mjs'; | ||
|
||
export default class LynxScans extends Genkan { | ||
export default class LynxScans extends WordPressMangastream { | ||
|
||
constructor() { | ||
super(); | ||
super.id = 'secretscans'; | ||
super.label = 'Lynx Scans'; | ||
this.tags = [ 'webtoon', 'high-quality', 'english', 'scanlation' ]; | ||
this.url = 'https://lynxscans.com'; | ||
this.links = { | ||
login: 'https://lynxscans.com/login' | ||
}; | ||
this.path = '/web/comics'; | ||
this.path = '/comics/list-mode/'; | ||
} | ||
} | ||
} |