Merge pull request #207 from Swakshan/manga/mangafire

Fix: Mangafire
This commit is contained in:
Moustapha Kodjo Amadou
2025-04-02 17:58:06 +02:00
committed by GitHub

View File

@@ -6,7 +6,7 @@ const mangayomiSources = [{
"iconUrl": "https://mangafire.to/assets/sites/mangafire/favicon.png?v3", "iconUrl": "https://mangafire.to/assets/sites/mangafire/favicon.png?v3",
"typeSource": "single", "typeSource": "single",
"itemType": 0, "itemType": 0,
"version": "0.1.23", "version": "0.1.24",
"dateFormat": "", "dateFormat": "",
"dateFormatLocale": "", "dateFormatLocale": "",
"pkgPath": "manga/src/all/mangafire.js" "pkgPath": "manga/src/all/mangafire.js"
@@ -173,8 +173,9 @@ class DefaultExtension extends MProvider {
const res = await new Client().get(url); const res = await new Client().get(url);
const data = JSON.parse(res.body); const data = JSON.parse(res.body);
const pages = []; const pages = [];
var hdr = { "Referer": this.source.baseUrl }
data.result.images.forEach(img => { data.result.images.forEach(img => {
pages.push(img[0]); pages.push({ url: img[0], headers: hdr });
}); });
return pages; return pages;
} }