Skip to content

Commit

Permalink
AsuraScans | Fix chapter pages not loading on certain ios versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Seyden committed Jul 24, 2024
1 parent a988061 commit a28d0ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/AsuraScans/AsuraScans.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const ASURASCANS_DOMAIN = 'https://asuracomic.net'
const ASURASCANS_API_DOMAIN = 'https://gg.asuracomic.net'

export const AsuraScansInfo: SourceInfo = {
version: '4.0.8',
version: '4.0.9',
name: 'AsuraScans',
description: 'Extension that pulls manga from AsuraScans',
author: 'Seyden',
Expand Down
3 changes: 1 addition & 2 deletions src/AsuraScans/AsuraScansParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ export class AsuraScansParser {

const matches = data.matchAll(/(https:\/\/gg\.asuracomic\.net\/storage\/comics\/[^"\\]+)/gi)
for (const match of Array.from(matches)) {

const url = match[1] ?? ''
const url = (match[1] ?? '').replace(' ', '%20')
pages.add(url)
}

Expand Down

0 comments on commit a28d0ae

Please sign in to comment.