1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

New: Improved messaging when qBittorrent fails due to host header rejection

(cherry picked from commit 48b4cc5f3ffa0cb8eea6748db9091267216cef4f)
This commit is contained in:
Mark McDowall 2023-01-02 16:30:00 -08:00 committed by Qstick
parent e085f6af8a
commit 0697d694e0

View File

@ -45,6 +45,11 @@ public bool IsApiSupported(QBittorrentSettings settings)
return true;
}
if (response.StatusCode == HttpStatusCode.Unauthorized)
{
throw new DownloadClientException("Failed to connect to qBittorrent. Check your settings and qBittorrent configuration.", new HttpException(response));
}
if (response.HasHttpError)
{
throw new DownloadClientException("Failed to connect to qBittorrent, check your settings.", new HttpException(response));