Compare commits

..

1 Commits

Author SHA1 Message Date
gamer147
564a70d35d [FA-misc] Update timeout for Novelpia login to give a greater grace time
Some checks failed
CI / build-backend (pull_request) Failing after 1m54s
CI / build-frontend (pull_request) Successful in 48s
2026-03-05 11:57:56 -05:00

View File

@@ -74,7 +74,10 @@ public class Program
{
client.BaseAddress = new Uri("https://novelpia.com");
})
.AddStandardResilienceHandler();
.AddStandardResilienceHandler(opt =>
{
opt.AttemptTimeout.Timeout = new TimeSpan(0, 1, 0);
});
builder.Services.AddHttpClient<ISourceAdapter, NovelpiaAdapter>(client =>
{
client.BaseAddress = new Uri("https://novelpia.com");