Skip to content

Commit

Permalink
ReadComicOnline | 2.0.2 | Fixing Images
Browse files Browse the repository at this point in the history
  • Loading branch information
xOnlyFadi committed Jul 2, 2024
1 parent 9fcc4ef commit c7ec57c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ReadComicOnline/ReadComicOnline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {

const RCO_DOMAIN = 'https://readcomiconline.li'
export const ReadComicOnlineInfo: SourceInfo = {
version: '2.0.1',
version: '2.0.2',
name: 'ReadComicOnline',
icon: 'icon.png',
author: 'xOnlyFadi',
Expand Down
2 changes: 1 addition & 1 deletion src/ReadComicOnline/ReadComicOnlineParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const parseChapterDetails = (data: string, mangaId: string, chapterId: st
for (const match of imageMatches) {
if (!match[1]) continue

let url = match[1].replace(/_x236/g, 'd').replace(/_x945/g, 'g')
let url = match[1].replace(/_x236/g, 'd').replace(/_x945/g, 'g').replace(/pw_.g28x/g, 'b').replace(/d2pr.x_27/g, 'h')

if (url.startsWith('https')) {
pages.push(url)
Expand Down

0 comments on commit c7ec57c

Please sign in to comment.