diff --git a/Juro.Providers/Manga/MangaPill.cs b/Juro.Providers/Manga/MangaPill.cs index 3406af9..e9832bf 100644 --- a/Juro.Providers/Manga/MangaPill.cs +++ b/Juro.Providers/Manga/MangaPill.cs @@ -152,7 +152,12 @@ public async ValueTask> GetChapterPagesAsync( .DocumentNode.SelectNodes(".//img[@class='js-page']") .Select(el => (IMangaChapterPage) - new MangaChapterPage() { Image = el.Attributes["data-src"]!.Value, Page = i++ } + new MangaChapterPage() + { + Image = el.Attributes["data-src"]!.Value, + Headers = new() { { "Referer", BaseUrl } }, + Page = i++ + } ) .ToList(); }