From 4d058ef8b12b4a4d20d16bdefddef0b7a9e18eb5 Mon Sep 17 00:00:00 2001 From: Diego Heras Date: Sat, 4 Apr 2020 07:04:58 +0200 Subject: [PATCH] epublibre: fix torrent download with retry (#8021) --- src/Jackett.Common/Indexers/EpubLibre.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/EpubLibre.cs b/src/Jackett.Common/Indexers/EpubLibre.cs index 6d5407956..dcf0c1e79 100644 --- a/src/Jackett.Common/Indexers/EpubLibre.cs +++ b/src/Jackett.Common/Indexers/EpubLibre.cs @@ -148,7 +148,7 @@ namespace Jackett.Common.Indexers public override async Task Download(Uri link) { - var result = await RequestStringWithCookies(link.AbsoluteUri); + var result = await RequestStringWithCookiesAndRetry(link.AbsoluteUri); if (SobrecargaUrl.Equals(result.RedirectingTo)) throw new Exception("El servidor se encuentra sobrecargado en estos momentos. / The server is currently overloaded."); try {