Compare commits
2 Commits
6a20783d48
...
bec3ac52a9
Author | SHA1 | Date | |
---|---|---|---|
bec3ac52a9 | |||
ea37e81ece |
@ -3,7 +3,6 @@ using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
using HtmlAgilityPack;
|
||||
using PuppeteerSharp;
|
||||
using PuppeteerSharp.Input;
|
||||
|
||||
namespace Tranga.MangaConnectors;
|
||||
|
||||
@ -12,7 +11,7 @@ internal class ChromiumDownloadClient : DownloadClient
|
||||
private IBrowser browser { get; set; }
|
||||
private const string ChromiumVersion = "1154303";
|
||||
private const int StartTimeoutMs = 30000;
|
||||
private HttpDownloadClient _httpDownloadClient;
|
||||
private readonly HttpDownloadClient _httpDownloadClient;
|
||||
|
||||
private async Task<IBrowser> DownloadBrowser()
|
||||
{
|
||||
|
@ -16,7 +16,7 @@ internal class HttpDownloadClient : DownloadClient
|
||||
Client.DefaultRequestHeaders.TryAddWithoutValidation("User-Agent", settings.userAgent);
|
||||
}
|
||||
|
||||
protected override RequestResult MakeRequestInternal(string url, string? referrer = null, string? clickButton = null)
|
||||
internal override RequestResult MakeRequestInternal(string url, string? referrer = null, string? clickButton = null)
|
||||
{
|
||||
if(clickButton is not null)
|
||||
Log("Can not click button on static site.");
|
||||
|
Loading…
Reference in New Issue
Block a user