Skip to content

Commit

Permalink
AsuraScans | Try to fix Search after latest asura update
Browse files Browse the repository at this point in the history
  • Loading branch information
Seyden committed Jul 26, 2024
1 parent 5709495 commit 5b5cda6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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.1.0',
version: '4.1.1',
name: 'AsuraScans',
description: 'Extension that pulls manga from AsuraScans',
author: 'Seyden',
Expand Down
2 changes: 1 addition & 1 deletion src/AsuraScans/UrlBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class URLBuilder {
? '?'
: ''
finalUrl += Object.entries(this.parameters).map(entry => {
if (entry[1] == null && !includeUndefinedParameters) {
if (!entry[1] && !includeUndefinedParameters) {
return undefined
}

Expand Down

0 comments on commit 5b5cda6

Please sign in to comment.