diff --git a/src/producer/Features/Crawlers/Torrentio/TorrentioCrawler.cs b/src/producer/Features/Crawlers/Torrentio/TorrentioCrawler.cs index 2e77a38..acb33bd 100644 --- a/src/producer/Features/Crawlers/Torrentio/TorrentioCrawler.cs +++ b/src/producer/Features/Crawlers/Torrentio/TorrentioCrawler.cs @@ -155,8 +155,7 @@ public partial class TorrentioCrawler( if (!response.IsSuccessStatusCode) { - logger.LogError("Failed to fetch {Url}", requestUrl); - return null; + throw new("Failed to fetch " + requestUrl); } var json = JsonDocument.Parse(await response.Content.ReadAsStringAsync());