Skip to content

Commit

Permalink
Update new server
Browse files Browse the repository at this point in the history
  • Loading branch information
hoang3402 committed Dec 2, 2023
1 parent 84788e1 commit 549f8f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export abstract class Main implements SearchResultsProviding, MangaProviding, Ch
const response = await this.requestManager.schedule(request, 1)
const result = typeof response.data === 'string' ? JSON.parse(response.data) : response.data
const items = []
for (const item of result.mangas) {
for (const item of result) {
items.push(App.createPartialSourceManga({
title: item.titles[0],
image: item.cover,
Expand Down

0 comments on commit 549f8f8

Please # to comment.