Skip to content

Commit 1701881

Browse files
committed
Merge branch 'cuttingedge-merge-ServerV2' into cuttingedge
2 parents e5be570 + 78a9322 commit 1701881

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tranga/MangaConnectors/ChromiumDownloadClient.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ private RequestResult MakeRequestBrowser(string url, string? referrer = null, st
7676
IResponse response;
7777
try
7878
{
79-
response = page.GoToAsync(url, WaitUntilNavigation.Networkidle0).Result;
80-
Log("Page loaded.");
79+
response = page.GoToAsync(url, WaitUntilNavigation.Load).Result;
80+
Log($"Page loaded. {url}");
8181
}
8282
catch (Exception e)
8383
{
84-
Log($"Could not load Page:\n{e.Message}");
84+
Log($"Could not load Page {url}\n{e.Message}");
8585
page.CloseAsync();
8686
return new RequestResult(HttpStatusCode.InternalServerError, null, Stream.Null);
8787
}

0 commit comments

Comments
 (0)