Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/34f0c1820a4b9961fc409244f002d6f2659b99b8 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Exception when request to SABnzbd times out

(cherry picked from commit f946d78153b85ad726a06a1140143c8beac8766d)

Closes 
Closes 
pull/2513/head
Mark McDowall 2 years ago committed by Bogdan
parent e33b192881
commit 34f0c1820a

@ -1,5 +1,6 @@
using System;
using System.Net;
using System.Net.Http;
using Newtonsoft.Json.Linq;
using NLog;
using NzbDrone.Common.Extensions;
@ -188,6 +189,10 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
{
throw new DownloadClientException("Unable to connect to SABnzbd, {0}", ex, ex.Message);
}
catch (HttpRequestException ex)
{
throw new DownloadClientUnavailableException("Unable to connect to SABnzbd, {0}", ex, ex.Message);
}
catch (WebException ex)
{
if (ex.Status == WebExceptionStatus.TrustFailure)

Loading…
Cancel
Save