Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
huynlx committed Sep 29, 2024
1 parent 83a02cb commit 36f5483
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions LXHentai/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2611,8 +2611,8 @@ class LXHentai extends paperback_extensions_common_1.Source {
});
let newUpdatedItems = [];
let data = yield this.requestManager.schedule(request, 1);
let html = Buffer.from(createByteArray(data.rawData)).toString();
let $ = this.cheerio.load(html);
// let html = Buffer.from(createByteArray(data.rawData)).toString();
let $ = this.cheerio.load(data.data);
for (let manga of $("div.manga-vertical", ".grid")
.toArray()
.splice(0, 15)) {
Expand Down
4 changes: 2 additions & 2 deletions LXHentai/source.js
Original file line number Diff line number Diff line change
Expand Up @@ -2611,8 +2611,8 @@ class LXHentai extends paperback_extensions_common_1.Source {
});
let newUpdatedItems = [];
let data = yield this.requestManager.schedule(request, 1);
let html = Buffer.from(createByteArray(data.rawData)).toString();
let $ = this.cheerio.load(html);
// let html = Buffer.from(createByteArray(data.rawData)).toString();
let $ = this.cheerio.load(data.data);
for (let manga of $("div.manga-vertical", ".grid")
.toArray()
.splice(0, 15)) {
Expand Down
Loading

0 comments on commit 36f5483

Please sign in to comment.