#96 Added single click to load all chapters.

This commit is contained in:
2024-01-03 18:37:29 +01:00
parent d986c808e3
commit 05573f65f9
4 changed files with 13 additions and 9 deletions

View File

@ -24,8 +24,10 @@ internal class HttpDownloadClient : DownloadClient
}
protected override RequestResult MakeRequestInternal(string url, string? referrer = null)
protected override RequestResult MakeRequestInternal(string url, string? referrer = null, string? clickButton = null)
{
if(clickButton is not null)
Log("Can not click button on static site.");
HttpResponseMessage? response = null;
while (response is null)
{